setMajorId method

BeaconBroadcast setMajorId(
  1. int majorId
)

Sets major id for beacon.

majorId is integer identifier with range between 1 and 65535

This parameter is required for the default layout

Implementation

BeaconBroadcast setMajorId(int majorId) {
  _majorId = majorId;
  return this;
}