DGePayStatusRespModel.fromJson constructor

DGePayStatusRespModel.fromJson(
  1. dynamic json
)

Implementation

DGePayStatusRespModel.fromJson(dynamic json) {
  _status = json['status'];
  _errorCode = json['errorCode'];
  _amount = json['amount'];
  _message = json['message'];
  _dGePayOrderId = json['dGePayOrderId'];
}