BeaconModel constructor

BeaconModel({
  1. String? mac,
  2. String? name,
  3. String? state,
})

Implementation

BeaconModel({
  this.mac,
  this.name,
  this.state,
});