TransactionResponseDto.fromJson constructor

TransactionResponseDto.fromJson(
  1. dynamic json
)

Implementation

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