UserTraits constructor
UserTraits({
- Address? address,
- int? age,
- String? avatar,
- String? birthday,
- Company? company,
- String? createdAt,
- String? description,
- String? email,
- String? firstName,
- String? gender,
- String? id,
- String? lastName,
- String? name,
- String? phone,
- String? title,
- String? username,
- String? website,
- Map<
String, dynamic> ? custom,
Implementation
UserTraits(
{this.address,
this.age,
this.avatar,
this.birthday,
this.company,
this.createdAt,
this.description,
this.email,
this.firstName,
this.gender,
this.id,
this.lastName,
this.name,
this.phone,
this.title,
this.username,
this.website,
Map<String, dynamic>? custom})
: super(custom: custom);