ExUnitPrices.fromJson constructor
Implementation
factory ExUnitPrices.fromJson(Map<String, dynamic> json) {
return ExUnitPrices(
memPrice: UnitInterval.fromJson(json['mem_price']),
stepPrice: UnitInterval.fromJson(json['step_price']));
}