CellTower constructor

CellTower({
  1. required num cellId,
  2. required num locationAreaCode,
  3. required num mobileCountryCode,
  4. required num mobileNetworkCode,
  5. num? timingAdvance,
  6. num? age,
  7. num? signalStrength,
})

Implementation

CellTower({
  required this.cellId,
  required this.locationAreaCode,
  required this.mobileCountryCode,
  required this.mobileNetworkCode,
  this.timingAdvance,
  num? age,
  num? signalStrength,
}) : super(age: age, signalStrength: signalStrength);