hasCookies method

Future<bool> hasCookies()

Gets whether there are stored cookies

Implementation

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