getStatusPrinter method
Implementation
@override
Future<String?> getStatusPrinter() async {
// Invoke the native method 'getStatus' and return the result.
final getStatusPrinter =
await methodChannel.invokeMethod<String>('getStatus');
return getStatusPrinter;
}