isPollfishPanelOpen method

Future<bool> isPollfishPanelOpen()

Implementation

Future<bool> isPollfishPanelOpen() {
  return _channel
      .invokeMethod<bool>('isPollfishPanelOpen')
      .then<bool>((bool? value) => value ?? false);
}