GetMethodsParams.withCurrency constructor

GetMethodsParams.withCurrency({
  1. required String? currency,
  2. String? customer,
  3. String? flowId,
  4. double? amount,
  5. IntentOperation? operation,
  6. Map<String, CustomFieldValue>? customFields,
})

Implementation

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