FWError constructor

FWError({
  1. required String name,
  2. String? reason,
})

Implementation

FWError({
  required this.name,
  this.reason,
});