clearIdentify method

  1. @override
void clearIdentify()
override

Call this function to stop identifying a person.

Implementation

@override
void clearIdentify() {
  try {
    methodChannel.invokeMethod(MethodConsts.clearIdentify);
  } on PlatformException catch (exception) {
    handleException(exception);
  }
}