TransactionResponse.fromJson constructor

TransactionResponse.fromJson(
  1. String message,
  2. bool isSuccess,
  3. dynamic json
)

Implementation

TransactionResponse.fromJson(this.message, this.isSuccess, dynamic json) {
  transactionData = json != null ? TransactionData.fromJson(json) : null;
}