toJson method
Implementation
Map<String, dynamic> toJson() {
final map = <String, dynamic>{};
map['status'] = _status;
map['message'] = _message;
map['orderId'] = _orderId;
map['uuidString'] = _uuidString;
map['transactionIdentifier'] = _transactionIdentifier;
map['sandbox'] = _sandbox;
map['code'] = _code;
return map;
}