hideVisualInspector property

  1. @override
Future<int> hideVisualInspector
override

Implementation

@override
Future<int> get hideVisualInspector async {
  try {
    final invoke = await methodChannel
        .invokeMethod<int>(MethodNames.hideVisualInspector);
    return invoke ?? Constants.errorMethod;
  } catch (error) {
    debugPrint(error.toString());
    return Constants.errorMethod;
  }
}