AppUserModel constructor

AppUserModel({
  1. String? name,
  2. String? email,
  3. required String userIdentifier,
  4. String? ipAddress,
  5. String? location,
})

Implementation

AppUserModel({
  this.name,
  this.email,
  required this.userIdentifier,
  this.ipAddress,
  this.location,
});