User constructor
User({ - String? uid,
- String? email,
- String? firstName,
- String? lastName,
- String? phone,
- String? countryCode,
- String? country,
- String? password,
- String? role,
- bool? isActive,
- String? createdAt,
- String? updatedAt,
- String? hasDefaultPassword,
- String? imgUrl,
})
Implementation
User(
{this.uid,
this.email,
this.firstName,
this.lastName,
this.phone,
this.countryCode,
this.country,
this.password,
this.role,
this.isActive,
this.createdAt,
this.updatedAt,
this.hasDefaultPassword,
this.imgUrl});