IdGenerator class
class IdGenerator {
int _counter=0;
String prefix = null;
/**
* Creates IdGenerator with [prefix]
*/
IdGenerator([this.prefix]);
String next() {
_counter++;
return prefix + '-' + _counter.toRadixString(36);
}
}
class IdGenerator {
int _counter=0;
String prefix = null;
/**
* Creates IdGenerator with [prefix]
*/
IdGenerator([this.prefix]);
String next() {
_counter++;
return prefix + '-' + _counter.toRadixString(36);
}
}