Fee constructor

Fee(
  1. dynamic objectType,
  2. dynamic mode,
  3. double? amount,
  4. bool? wasCharged,
  5. bool? wasRefunded,
  6. String? type
)

Implementation

Fee(
  objectType,
  mode,
  this.amount,
  this.wasCharged,
  this.wasRefunded,
  this.type,
) : super(objectType, mode);