PayModel constructor
PayModel(
- String id,
- String status,
- int amount,
- int fee,
- String currency,
- int refunded,
- String? refundedAt,
- int captured,
- String? capturedAt,
- String? voidedAt,
- String? description,
- String? invoiceId,
- String ip,
- String callbackUrl,
- String createdAt,
- String updatedAt,
- Object? metadata,
- dynamic source,
- String? type,
- String message,
- dynamic error,
Implementation
PayModel(
this.id,
this.status,
this.amount,
this.fee,
this.currency,
this.refunded,
this.refundedAt,
this.captured,
this.capturedAt,
this.voidedAt,
this.description,
this.invoiceId,
this.ip,
this.callbackUrl,
this.createdAt,
this.updatedAt,
this.metadata,
this.source,
this.type,
this.message,
this.error
);