readById method
Future<(UResponse<UMerchantResponse> ?, UEmptyResponse?, String?)>
readById({})
Implementation
Future<(UResponse<UMerchantResponse>?, UEmptyResponse?, String?)> readById({
required UIdParams p,
Function(UResponse<UMerchantResponse> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/Merchant/ReadById", p.toMap(), _Api.one(UMerchantResponse.fromMap), _Api.empty, onOk, onError, onException);