MeCard constructor

MeCard({
  1. required String name,
  2. String? lastName,
  3. String? nickname,
  4. String? organization,
  5. String? role,
  6. List<String>? telephones,
  7. List<String>? videophones,
  8. List<String>? emails,
  9. List<String>? addresses,
  10. List<String>? urls,
  11. DateTime? birthday,
  12. List<MeCardSocialProfile>? socialProfiles,
  13. String? note,
})

Default constructor. Only name is required.

Implementation

MeCard({
  required this.name,
  this.lastName,
  this.nickname,
  this.organization,
  this.role,
  this.telephones,
  this.videophones,
  this.emails,
  this.addresses,
  this.urls,
  this.birthday,
  this.socialProfiles,
  this.note,
});