NearbyDevice constructor

NearbyDevice({
  1. required String id,
  2. String? name,
  3. String? vehicleId,
  4. bool isCarDevice = false,
})

Implementation

NearbyDevice({
  required this.id,
  this.name,
  this.vehicleId,
  this.isCarDevice = false,
});