CellularCheckResult constructor

CellularCheckResult({
  1. required bool cellularInterfaceAvailable,
  2. required bool cellularDataReachable,
})

Creates a CellularCheckResult from the passive and active check flags.

Implementation

CellularCheckResult({
  required this.cellularInterfaceAvailable,
  required this.cellularDataReachable,
});