clearLCDScreen method
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');
}
}