User constructor
User({
- required String subject,
- String? name,
- String? givenName,
- String? familyName,
- String? middleName,
- String? nickname,
- String? preferredUsername,
- Uri? profile,
- Uri? picture,
- Uri? website,
- String? email,
- bool? emailVerified,
- String? gender,
- String? birthdate,
- String? zoneinfo,
- String? locale,
- String? phoneNumber,
- bool? phoneNumberVerified,
- String? formattedAddress,
- String? streetAddress,
- String? locality,
- String? region,
- String? postalCode,
- String? country,
- DateTime? updatedAt,
Implementation
User({
required this.subject,
this.name,
this.givenName,
this.familyName,
this.middleName,
this.nickname,
this.preferredUsername,
this.profile,
this.picture,
this.website,
this.email,
this.emailVerified,
this.gender,
this.birthdate,
this.zoneinfo,
this.locale,
this.phoneNumber,
this.phoneNumberVerified,
this.formattedAddress,
this.streetAddress,
this.locality,
this.region,
this.postalCode,
this.country,
this.updatedAt,
});