AppUserData constructor

const AppUserData({
  1. required int id,
  2. required String userName,
  3. required String email,
  4. required String fullName,
  5. required String encryptedPassword,
  6. required bool enabled,
  7. required bool activated,
  8. String? accessToken,
  9. int? employeeId,
  10. DateTime? lastActiveDatetime,
  11. required bool isSystemUser,
  12. String? imagePath,
})

Implementation

const AppUserData({
  required this.id,
  required this.userName,
  required this.email,
  required this.fullName,
  required this.encryptedPassword,
  required this.enabled,
  required this.activated,
  this.accessToken,
  this.employeeId,
  this.lastActiveDatetime,
  required this.isSystemUser,
  this.imagePath,
});