ITransResult.fromJson constructor

ITransResult.fromJson(
  1. 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']),
    );