Fee constructor

const Fee({
  1. required int amount,
  2. String? application,
  3. required String currency,
  4. String? description,
  5. required String type,
})

Fee

Implementation

const Fee({
  required this.amount,
  this.application,
  required this.currency,
  this.description,
  required this.type,
});