User constructor
User({
- required String username,
- required String firstName,
- required String lastName,
- required String email,
- required String userId,
- required bool editor,
- required bool sdk,
- required bool vpnaccess,
- required bool webpageaccess,
- String? password,
- required bool enabled,
- required bool relationshipsAuth,
- List<
String> userQuota = const [],
Returns a new User instance.
Implementation
User({
required this.username,
required this.firstName,
required this.lastName,
required this.email,
required this.userId,
required this.editor,
required this.sdk,
required this.vpnaccess,
required this.webpageaccess,
this.password,
required this.enabled,
required this.relationshipsAuth,
this.userQuota = const [],
});