nameFor method

String nameFor(
  1. String prefix
)

Implementation

String nameFor(String prefix) {
  assert(prefix.isNotEmpty);
  return '$prefix@$nextId';
}