FeeStatsResponse.fromJson constructor

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

Implementation

factory FeeStatsResponse.fromJson(Map<String, dynamic> json) => FeeStatsResponse(
    json['last_ledger'],
    json['last_ledger_base_fee'],
    json['ledger_capacity_usage'],
    FeeChargedResponse.fromJson(json['fee_charged']),
    MaxFeeResponse.fromJson(json['max_fee']));