Namefully.of constructor

Namefully.of(
  1. List<Name> names, {
  2. Config? config,
})

Creates a name from a list of Names.

Name is provided by this utility, representing a namon with some extra capabilities, compared to a simple string name. This class helps to define the role of a name part (e.g, prefix) beforehand, which, as a consequence, gives more flexibility at the time of creating an instance of Namefully.

Implementation

Namefully.of(List<Name> names, {Config? config}) {
  _build(ListNameParser(names), config);
}