WebhookResponse constructor

const WebhookResponse({
  1. required String id,
  2. required String type,
  3. required WebhookResponseAttribute attributes,
})

response from paymongo webhook API

Implementation

const WebhookResponse({
  required this.id,
  required this.type,
  required this.attributes,
});