RazorpayInstantSettlementCreateRequestBody constructor

  1. @JsonSerializable(includeIfNull: false)
const RazorpayInstantSettlementCreateRequestBody({
  1. required dynamic amount,
  2. @JsonKey(toJson: _boolToInt, fromJson: _intToBool) bool? settle_full_balance,
  3. String? description,
  4. IMap? notes,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory RazorpayInstantSettlementCreateRequestBody({
  required dynamic amount, // number | string
  @JsonKey(toJson: _boolToInt, fromJson: _intToBool)
  bool? settle_full_balance, // 0 | 1
  String? description,
  IMap<dynamic>? notes,
}) = _RazorpayInstantSettlementCreateRequestBody;