check method

Future<SiteModel?> check(
  1. String url, {
  2. Duration? timeout,
})

Implementation

Future<SiteModel?> check(
  String url, {
  Duration? timeout,
}) {
  return _social.get(
    url: url,
    timeout: timeout,
    executablePath: executablePath,
  );
}