ITransResult.fromJson constructor
ITransResult.fromJson(
- Map json
Implementation
factory ITransResult.fromJson(Map json) => ITransResult(
from: json['from'],
ret: json['ret'],
sid: json['sid'],
to: json['to'],
transResult: TransResult.fromJson(json['trans_result']),
);