VCardName constructor

VCardName({
  1. String? prefixes,
  2. required String name,
  3. String? middleNames,
  4. String? lastName,
  5. String? suffixes,
})

Default constructor

Implementation

VCardName({
  this.prefixes,
  required this.name,
  this.middleNames,
  this.lastName,
  this.suffixes,
});