clearItem static method

Future<void> clearItem()

Implementation

static Future<void> clearItem() async {
  try {
    await platform.invokeMethod(
      'clearItem',
    );
  } on PlatformException catch (e) {
    showToast(e.message.toString());
  }
}