OkHiUser constructor

OkHiUser({
  1. required String phone,
  2. String? firstName,
  3. String? lastName,
  4. String? id,
  5. String? email,
  6. String? appUserId,
  7. String? token,
})

Implementation

OkHiUser({
  required this.phone,
  this.firstName,
  this.lastName,
  this.id,
  this.email,
  this.appUserId,
  this.token,
});