RazorpayItemUpdateRequestBody constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayItemUpdateRequestBody({
  1. String? name,
  2. dynamic amount,
  3. String? currency,
  4. String? description,
  5. bool? active,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayItemUpdateRequestBody({
  String? name,
  dynamic amount, // number | string
  String? currency,
  String? description,
  bool? active,
}) = _RazorpayItemUpdateRequestBody;