TransactionResponse.fromMap constructor
TransactionResponse.fromMap(
- Map map
Implementation
factory TransactionResponse.fromMap(Map<dynamic, dynamic> map) {
return TransactionResponse(
status: map['status'] as String,
message: map['message'] as String,
reference: map['reference'] as String,
);
}