checkCellular method

Future<Map<String, dynamic>?> checkCellular({
  1. String host = 'www.apple.com',
  2. int port = 443,
  3. double timeoutSeconds = 5.0,
})

Supported on iOS only. Runs the passive (interface available) + active (data reachable) cellular checks. Returns the raw map; the public API wraps it into CellularCheckResult.

Implementation

Future<Map<String, dynamic>?> checkCellular({
  String host = 'www.apple.com',
  int port = 443,
  double timeoutSeconds = 5.0,
}) {
  throw UnimplementedError('checkCellular() has not been implemented.');
}