PaymentCheckRequest.fromMap constructor
Implementation
factory PaymentCheckRequest.fromMap(Map<String, dynamic> map) {
return PaymentCheckRequest(
handle: map['handle'] as String,
orderNSU: map['order_nsu'] as String,
transactionNSU: map['transaction_nsu'] as String,
slug: map['slug'] as String,
);
}