WebHookData constructor

WebHookData({
  1. int? id,
  2. String? merchantId,
  3. String? event,
  4. String? url,
  5. String? status,
  6. dynamic deletedAt,
  7. DateTime? createdAt,
  8. DateTime? updatedAt,
})

Implementation

WebHookData({
    this.id,
    this.merchantId,
    this.event,
    this.url,
    this.status,
    this.deletedAt,
    this.createdAt,
    this.updatedAt,
});