Fpx constructor

  1. @JsonSerializable(explicitToJson: true)
const Fpx({
  1. String? bank,
  2. String? accountHolderType,
})

Fpx data associated with the payment method

Implementation

@JsonSerializable(explicitToJson: true)
const factory Fpx({
  /// the customer bank
  String? bank,

  /// accountholder type
  String? accountHolderType,
}) = _Fpx;