User constructor
User({ - String? uid,
- String? email,
- String? firstName,
- String? lastName,
- String? phone,
- String? countryCode,
- dynamic country,
- dynamic password,
- String? role,
- bool? isActive,
- DateTime? createdAt,
- DateTime? updatedAt,
- dynamic hasDefaultPassword,
- dynamic 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,
});