PersonName constructor
PersonName({})
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;