readQuote method
Future<(UResponse<UGoldQuoteResponse> ?, UEmptyResponse?, String?)>
readQuote({
- required UGoldQuoteParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<UGoldQuoteResponse>?, UEmptyResponse?, String?)> readQuote({
required UGoldQuoteParams p,
Function(UResponse<UGoldQuoteResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Gold/ReadQuote", p.toMap(), _Api.one(UGoldQuoteResponse.fromMap), _Api.empty, onOk, onError, onException);