PreflightResult constructor

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

Implementation

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