Config constructor

Config({
  1. String name,
  2. NameOrder? orderedBy,
  3. Separator? separator,
  4. Title? title,
  5. bool? ending,
  6. bool? bypass,
  7. Surname? surname,
})

Returns a unified version of default values of the configuration and the optional values to consider.

Implementation

factory Config({
  String name,
  NameOrder? orderedBy,
  Separator? separator,
  Title? title,
  bool? ending,
  bool? bypass,
  Surname? surname,
}) = _Config;