name property

String name

Implementation

String get name {
  switch (this) {
    case MatchingStrategy.all:
      return 'all';
    case MatchingStrategy.last:
      return 'last';
    default:
      return 'last';
  }
}