RazorpayWebhookBaseRequestBody constructor
- @JsonSerializable(includeIfNull: false)
const
RazorpayWebhookBaseRequestBody(
{ - required String url,
- required List<String> events,
- String? secret,
- String? active,
})
Implementation
@JsonSerializable(includeIfNull: false)
const factory RazorpayWebhookBaseRequestBody({
required String url,
required List<String> events, // List of event names, String? alert_email,
String? secret,
String?
active, // 'true' or 'false'? Or bool? d.ts says string. Assuming bool for Dart.
}) = _RazorpayWebhookBaseRequestBody;