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