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