RazorpayCustomerUpdateRequestBody constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayCustomerUpdateRequestBody({
  1. String? name,
  2. String? email,
  3. dynamic contact,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayCustomerUpdateRequestBody({
  String? name,
  String? email,
  dynamic contact, // string | number
}) = _RazorpayCustomerUpdateRequestBody;