PaymentOptions constructor

PaymentOptions(
  1. {dynamic objectType,
  2. dynamic mode,
  3. PaymentOptionType? type,
  4. String? accountNumber,
  5. String? countryCode,
  6. String? postalCode}
)

Implementation

PaymentOptions({
  objectType,
  mode,
  this.type,
  this.accountNumber,
  this.countryCode,
  this.postalCode,
}) : super(objectType, mode);