setLogEnable method

  1. @override
Future<int> setLogEnable(
  1. bool status
)
override

Implementation

@override
Future<int> setLogEnable(bool status) async {
  final ret = await methodChannel.invokeMethod(
      PluginFunctionInterfaceConstants.PRINTER_SET_LOG_ENABLE, status);
  return ret;
}