Mempool.fromJson constructor

Mempool.fromJson(
  1. dynamic json
)

Implementation

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