SimplePriceTryResponse.fromJson constructor Null safety

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

Implementation

factory SimplePriceTryResponse.fromJson(Map<String, dynamic> json) =>
    SimplePriceTryResponse(
      uniris: Uniris.fromJson(json['uniris']),
    );