PaywayPartnerCheckMerchantResponseStatus.fromMap constructor
Implementation
factory PaywayPartnerCheckMerchantResponseStatus.fromMap(
Map<String, dynamic> map) {
return PaywayPartnerCheckMerchantResponseStatus(
code: map['code'] as String,
message: map['message'] as String,
tran_id: map['tran_id'] != null ? map['tran_id'] as String : null,
);
}