maxSpans property
int
get
maxSpans
Returns the maximum number of spans that can be attached to single transaction.
Implementation
int get maxSpans => _maxSpans;
set
maxSpans
(int maxSpans)
Sets the maximum number of spans that can be attached to single transaction.
Implementation
set maxSpans(int maxSpans) {
assert(maxSpans > 0);
_maxSpans = maxSpans;
}