AccessorStringOption constructor

AccessorStringOption(
  1. String name, {
  2. String? description,
  3. RegExp? regex,
})

Implementation

new(super.name, {super.description, RegExp? regex})
  : _regex = regex ?? RegExpValidated.anyToken;