Funds constructor

Funds({
  1. required int amount,
  2. required String currency,
  3. required Map<String, dynamic> source_types,
})

Implementation

Funds({
  required this.amount,
  required this.currency,
  // ignore: non_constant_identifier_names
  required this.source_types,
});