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, SerializationManager serializationManager)
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

allToJson() Map<String, dynamic>
Returns a serialized JSON structure of the model which also includes fields used by the database.
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, ready to be sent through the API. This does not include fields that are marked as database only.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited