readByUserId method
Future<(UResponse<List<UWalletResponse> > ?, UEmptyResponse?, String?)>
readByUserId({})
Implementation
Future<(UResponse<List<UWalletResponse>>?, UEmptyResponse?, String?)> readByUserId({
required UIdParams p,
Function(UResponse<List<UWalletResponse>> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/wallet/ReadByUserId", p.toMap(), _Api.list(UWalletResponse.fromMap), _Api.empty, onOk, onError, onException);