maxNumAttributesPerLink property

int get maxNumAttributesPerLink

return the max number of attributes per link

Implementation

int get maxNumAttributesPerLink => _maxNumAttributesPerLink;
set maxNumAttributesPerLink (int maxNumAttributesPerLink)

set the max number of attributes per link

Implementation

set maxNumAttributesPerLink(int maxNumAttributesPerLink) {
  if (maxNumAttributesPerLink < 0) {
    throw ArgumentError('maxNumEvents must be greater than or equal to zero');
  }
}