Mempool.fromJson constructor
Mempool.fromJson(
- dynamic json
Implementation
factory Mempool.fromJson(dynamic json) {
return Mempool(
timestamp: json["timestamp"],
fee: List.from(json["fee"]),
amount: List.from(json["amount"]),
);
}