GetMethodsParams.withCurrency constructor

GetMethodsParams.withCurrency({
  1. required String? currency,
  2. String? customer,
  3. String? flowId,
  4. double? amount,
})

Implementation

GetMethodsParams.withCurrency({
  required this.currency,
  this.customer,
  this.flowId,
  this.amount,
}) : assert(currency != null);