isFollowingProduct method

Future<(UResponse<bool>?, UEmptyResponse?, String?)> isFollowingProduct({
  1. required UFollowParams p,
  2. dynamic onOk(
    1. UResponse<bool> r
    )?,
  3. dynamic onError(
    1. UEmptyResponse e
    )?,
  4. dynamic onException(
    1. String e
    )?,
})

Implementation

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