FeeDetails constructor

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

Implementation

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