Contact constructor

Contact({
  1. String? extra,
  2. int? client_id,
  3. string? phone_number,
  4. string? first_name,
  5. string? last_name,
  6. string? vcard,
  7. int53? user_id,
})

Implementation

Contact({
  super.extra,
  super.client_id,
  this.phone_number,
  this.first_name,
  this.last_name,
  this.vcard,
  this.user_id,
});