clearLCDScreen method

  1. @override
Future<String> clearLCDScreen()
override

Implementation

@override
Future<String> clearLCDScreen() async {
  try {
    return await methodChannel.invokeMethod<String>('clearLCDScreen') ??
        'invalid';
  } on MissingPluginException catch (_) {
    throw MissingPluginException(
        'No method found for clearLCDScreen() on channel');
  }
}