middleName method

List<String> middleName()

Gets the middle Name part of the FullName.

Implementation

List<String> middleName() {
  return _fullName.middleName.map((n) => n.value).toList();
}