isPollfishPresent method

Future<bool> isPollfishPresent()

Implementation

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