ProfileSource enum
The enum ProfileSource
is defining a set of possible values for the source of a profile. It has
two values: local
and external
. This enum can be used to represent the source of a profile in an
application.
Values
- local → const ProfileSource
-
In the
enum ProfileSource
,local,
is defining one of the possible values for the source of a profile. It represents the profile source as "local". - external → const ProfileSource
-
In the
enum ProfileSource
,external;
is defining one of the possible values for the source of a profile. It represents the profile source as "external".
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
The
toString()
method is overriding the defaulttoString()
method of theProfileSource
enum. It is used to convert the enum values into their corresponding string representations.override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ProfileSource> - A constant List of the values in this enum, in order of their declaration.