Gets whether there are stored cookies
Future<bool> hasCookies() { return _channel .invokeMethod<bool>('hasCookies') .then<bool>((bool? result) => result ?? false); }