ContactInfo constructor

ContactInfo({
  1. String? displayName,
  2. String? email,
})

Implementation

ContactInfo({
  this.displayName,
  this.email,
});