clearSticker method

Future<void> clearSticker()

Implementation

Future<void> clearSticker() async {
  try {
    await _channel.invokeMethod<dynamic>('clearSticker');
  } on PlatformException catch (e) {
    debugPrint('${e.code}: ${e.message}');
  }
}