SEP38PriceResponse.fromJson constructor

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

Implementation

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