AuthPayloadModel constructor

AuthPayloadModel({
  1. required String fullName,
  2. String? facebookId,
  3. String? googleId,
  4. String? appleId,
  5. String? email,
})

Implementation

AuthPayloadModel({
  required this.fullName,
  this.facebookId,
  this.googleId,
  this.appleId,
  this.email,
});