forgetUser static method

Future forgetUser()

Implementation

static Future forgetUser() async {
  try {
    await _platform.invokeListMethod('forgetUser');
  } on PlatformException catch (e) {
    print("Error on reset data ${e.message}");
  }
}