reset method

Future<void> reset()

Reset Bluedot Point SDK (only if you wish to switch to a different projectId)

Call this method only if you need to switch to a different projectId, this will reset the Bluedot Point SDK to its original state. Upon completion callback, you can make the call initialize(String projectId) to initialize with a different projectId.

Implementation

Future<void> reset() {
  return BluedotPointSdkPlatform.instance.reset();
}