QueryOracleProviderPricesRequest.fromJson constructor

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

Implementation

factory QueryOracleProviderPricesRequest.fromJson(Map<String, dynamic> json) {
  return QueryOracleProviderPricesRequest(
    provider: json.valueAsString<String?>('provider', acceptCamelCase: true),
  );
}