removeWidgetData static method

Future<bool> removeWidgetData({
  1. required String key,
})

Implementation

static Future<bool> removeWidgetData({required String key}) async {
  return await _channel
      .invokeMethod('removeWidgetData', <String, String>{'key': key});
}