has_cookie method

Future<bool> has_cookie(
  1. String domain,
  2. String cookie
)

Implementation

Future<bool> has_cookie(
  String domain,
  String cookie,
) async {
  var Online = await this;
  return Online.has_cookie(
    domain,
    cookie,
  );
}