ProfileRepository class abstract
Interface for managing user profiles.
Constructors
Properties
Methods
-
configure(
Object configuration) → Future< void> - Configures the profile repository with the provided settings.
-
createProfile(
{required String name, String? description, VaultCancelToken? cancelToken}) → Future< void> - Creates a new profile.
-
deleteProfile(
Profile profile, {VaultCancelToken? cancelToken}) → Future< void> - Deletes a profile.
-
isConfigured(
) → Future< bool> - Checks if the profile repository is configured.
-
listProfiles(
{VaultCancelToken? cancelToken}) → Future< List< Profile> > - Retrieves a list of all available profiles.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
updateProfile(
Profile profile, {VaultCancelToken? cancelToken}) → Future< void> - Updates an existing profile.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited