generateIncrementalName function
The default NameGenerator.
Generates a name starting with dss-, followed by a number
which will increase by 1 each time this is called.
Implementation
String generateIncrementalName() => 'dss-${_counter++}';
The default NameGenerator.
Generates a name starting with dss-, followed by a number
which will increase by 1 each time this is called.
String generateIncrementalName() => 'dss-${_counter++}';