check method

Future<String?> check(
  1. String url
)

Implementation

Future<String?> check(String url) async {
  try {
    return await _channel.invokeMethod('check', url);
  } on PlatformException catch (e) {
    return e.message;
  }
}