disabled property

  1. @TagNumber.new(2)
bool get disabled

If set to true, the lane won't be usable and won't show up in the UI. Can be used if there is only a single lane in the gym. At least one lane must be enabled. Otherwise, the first lane will be enabled!

Implementation

@$pb.TagNumber(2)
$core.bool get disabled => $_getBF(0);
  1. @TagNumber.new(2)
set disabled (bool v)

Implementation

@$pb.TagNumber(2)
set disabled($core.bool v) { $_setBool(0, v); }