ContactPayload constructor

const ContactPayload({
  1. required String name,
  2. String? phone,
  3. String? email,
  4. String? avatarUrl,
})

Implementation

const ContactPayload({
  required this.name,
  this.phone,
  this.email,
  this.avatarUrl,
});