VerifyTransactionRes.fromJson constructor

VerifyTransactionRes.fromJson(
  1. dynamic json
)

Implementation

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