PreflightResult constructor

PreflightResult({
  1. required bool success,
  2. String? error,
  3. List<String>? details,
  4. Component? component,
})

Implementation

PreflightResult({
  required this.success,
  this.error,
  this.details,
  this.component,
});