resetData static method

Future resetData()

Implementation

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