SEP38PricesResponse.fromJson constructor

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

Implementation

factory SEP38PricesResponse.fromJson(Map<String, dynamic> json) {
  return SEP38PricesResponse(List<SEP38BuyAsset>.from(
      json['buy_assets'].map((e) => SEP38BuyAsset.fromJson(e))));
}