Tx.fromJson constructor

Tx.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Tx.fromJson(Map<String, dynamic> json) =>
    Tx(data: json['data'], to: json['to'], value: json['value']);