resetLastLaunch static method

Future<void> resetLastLaunch()

Reset first launch

Implementation

static Future<void> resetLastLaunch() async {
  await useMonitoringMethod(() async {
    await writeValue("last_launch", DateTime.now().toString());
  });
}