read method
Future<(UResponse<List<UMerchantResponse> > ?, UEmptyResponse?, String?)>
read({
- required UMerchantReadParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<List<UMerchantResponse>>?, UEmptyResponse?, String?)> read({
required UMerchantReadParams p,
Function(UResponse<List<UMerchantResponse>> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Merchant/Read", p.toMap(), _Api.list(UMerchantResponse.fromMap), _Api.empty, onOk, onError, onException);