Contact constructor

Contact({
  1. String? otherName,
  2. List<Phone>? phones,
  3. String? lastTime,
})

Implementation

Contact({this.otherName, this.phones, this.lastTime});