isFollowingCategory method
Future<(UResponse<bool> ?, UEmptyResponse?, String?)>
isFollowingCategory({
- required UFollowParams p,
- dynamic onOk()?,
- dynamic onError()?,
- dynamic onException(
- String e
Implementation
Future<(UResponse<bool>?, UEmptyResponse?, String?)> isFollowingCategory({
required UFollowParams p,
Function(UResponse<bool> r)? onOk,
Function(UEmptyResponse e)? onError,
Function(String e)? onException,
}) => _Api.call("/follow/IsFollowingCategory", p.toMap(), _Api.raw<bool>(), _Api.empty, onOk, onError, onException);