maxNumLink property

int get maxNumLink

return the max number of links per span

Implementation

int get maxNumLink => _maxNumLink;
set maxNumLink (int maxNumLink)

set the max number of links per span

Implementation

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