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