PersonName constructor

PersonName({
  1. String? lastName,
  2. List<String>? firstNames,
  3. int? start,
  4. int? end,
  5. List<String>? prefix,
  6. List<String>? suffix,
  7. String? text,
  8. PersonNameUse? use,
})

Implementation

PersonName({
		String? lastName,
		List<String>? firstNames,
		int? start,
		int? end,
		List<String>? prefix,
		List<String>? suffix,
		String? text,
		PersonNameUse? use
	}) : lastName = lastName ?? null,
	firstNames = firstNames ?? [],
	start = start ?? null,
	end = end ?? null,
	prefix = prefix ?? [],
	suffix = suffix ?? [],
	text = text ?? null,
	use = use ?? null;