OrderModel constructor
OrderModel({
- required String id,
- String? hash,
- String? status,
- String? clientId,
- String? orderPaymentInfoId,
- DateTime? createdAt,
- DateTime? updatedAt,
- OrderClientInfo? client,
- OrderPaymentInfo? orderPaymentInfo,
Implementation
OrderModel({
required this.id,
this.hash,
this.status,
this.clientId,
this.orderPaymentInfoId,
this.createdAt,
this.updatedAt,
this.client,
this.orderPaymentInfo,
});