RazorpayInvoiceAddressInput constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayInvoiceAddressInput({
  1. String? line1,
  2. String? line2,
  3. dynamic zipcode,
  4. String? city,
  5. String? state,
  6. String? country,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayInvoiceAddressInput({
  String? line1,
  String? line2,
  dynamic zipcode, // string | number
  String? city,
  String? state,
  String? country,
}) = _RazorpayInvoiceAddressInput;