QueryOpenInterestRequest.fromJson constructor
Implementation
factory QueryOpenInterestRequest.fromJson(Map<String, dynamic> json) {
return QueryOpenInterestRequest(
marketId: json.valueAsString<String?>('market_id', acceptCamelCase: true),
);
}