matchSpecificity property

int get matchSpecificity

Implementation

int get matchSpecificity => _matchSpecificity;
set matchSpecificity (int specificity)

Implementation

set matchSpecificity(int specificity) {
  if (specificity > _matchSpecificity || specificity == -1 ) {
    _matchSpecificity = specificity;
  }
}