reset method

Future<void> reset()

Resets userId to 'null' and deviceId to a random UUID.

Note different devices on different platforms should have different device Ids.

Implementation

Future<void> reset() async {
  return await _channel
      .invokeMethod('reset', {'instanceName': configuration.instanceName});
}