SEP38PriceResponse.fromJson constructor
Implementation
factory SEP38PriceResponse.fromJson(Map<String, dynamic> json) =>
SEP38PriceResponse(
json['total_price'],
json['price'],
json['sell_amount'],
json['buy_amount'],
SEP38Fee.fromJson(json['fee']));