ToMany constructor

ToMany(
  1. Iterable<Identifier> identifiers
)

Implementation

ToMany(Iterable<Identifier> identifiers) {
  for (var id in identifiers) {
    _map[id.key] = id;
  }
}