TransactionResponseDto.fromJson constructor
TransactionResponseDto.fromJson(
- dynamic json
Implementation
TransactionResponseDto.fromJson(dynamic json) {
success = json['success'];
message = json['message'];
data = json['data'] != null ? Data.fromJson(json['data']) : null;
}