Contact constructor

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

Implementation

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