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