UserSettingsConfig class abstract
User settings.
Constructors
- UserSettingsConfig({required bool canSeeUserName, required bool canSeeFullName, required bool canEditUserName, required bool canEditFullName, required bool canEditUserImage})
-
factory
-
UserSettingsConfig.fromJson(Map<
String, dynamic> jsonSerialization) -
factory
Properties
- canEditFullName ↔ bool
-
True if the user should be able to edit its full name.
getter/setter pair
- canEditUserImage ↔ bool
-
True if the user should be able to upload a new user image.
getter/setter pair
- canEditUserName ↔ bool
-
True if the user should be able to edit its user name.
getter/setter pair
- canSeeFullName ↔ bool
-
True if the user's full name should be visible.
getter/setter pair
- canSeeUserName ↔ bool
-
True if the user's nickname should be visible.
getter/setter pair
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
copyWith(
{bool? canSeeUserName, bool? canSeeFullName, bool? canEditUserName, bool? canEditFullName, bool? canEditUserImage}) → UserSettingsConfig -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> - Returns a serialized JSON structure of the model which also includes fields used by the database.
-
toJsonForProtocol(
) → Map< String, dynamic> - Returns a JSON structure of the model, optimized for Protocol communication.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited