RedirectResponse.fromJson constructor

RedirectResponse.fromJson(
  1. dynamic json
)

Implementation

RedirectResponse.fromJson(dynamic json) {
  result = json['result'];
  transId = json['trans_id'];
  url = json['url'];
}