ShadertoyBaseStore class abstract

A base implementation of Shadertoy stores

Implemented types

Constructors

ShadertoyBaseStore()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

deletePlaylistById(String playlistId) Future<DeletePlaylistResponse>
Deletes a Playlist by playlistId
inherited
deleteShaderById(String shaderId) Future<DeleteShaderResponse>
Deletes a Shader by shaderId
inherited
deleteShaderComments(String shaderId) Future<DeleteShaderCommentsResponse>
Deletes a list of shaderIds comments
inherited
deleteSyncById(SyncType type, dynamic target) Future<DeleteSyncResponse>
Deletes a Sync by type and target
inherited
deleteUserById(String userId) Future<DeleteUserResponse>
Deletes a User by userId
inherited
findAllCommentIds() Future<FindCommentIdsResponse>
Returns a FindCommentIdsResponse with all the comment id's
inherited
findAllComments() Future<FindCommentsResponse>
Returns a FindCommentsResponse with all the comments
inherited
findAllPlaylistIds() Future<FindPlaylistIdsResponse>
Returns a FindPlaylistIdsResponse with all the playlist id's
inherited
findAllPlaylists() Future<FindPlaylistsResponse>
Returns a FindPlaylistsResponse with all the playlists
inherited
findAllShaderIds() Future<FindShaderIdsResponse>
Returns a FindShaderIdsResponse with all the shader id's
inherited
findAllShaderIdsByPlaylistId(String playlistId) Future<FindShaderIdsResponse>
Returns a FindShaderIdsResponse with all the shader id's for the playlist playlistId
inherited
findAllShaderIdsByUserId(String userId) Future<FindShaderIdsResponse>
Returns a FindShaderIdsResponse with all the shader id's for the user userId
inherited
findAllShaders() Future<FindShadersResponse>
Returns a FindShadersResponse with all the shaders
inherited
findAllSyncs() Future<FindSyncsResponse>
Returns a FindSyncsResponse with all the syncs
inherited
findAllUserIds() Future<FindUserIdsResponse>
Returns a FindUserIdsResponse with all the user id's
inherited
findAllUsers() Future<FindUsersResponse>
Returns a FindUsersResponse with all the users
inherited
findCommentById(String commentId) Future<FindCommentResponse>
Returns a FindCommentResponse for a comment with id commentId
inherited
findCommentsByShaderId(String shaderId) Future<FindCommentsResponse>
Returns a FindCommentsResponse for a shader with id shaderId
inherited
findPlaylistById(String playlistId) Future<FindPlaylistResponse>
Returns a FindPlaylistResponse for a playlist with playlistId
inherited
findShaderById(String shaderId) Future<FindShaderResponse>
Returns a FindShaderResponse for the shader with shaderId
inherited
findShaderIds({String? term, Set<String>? filters, Sort? sort, int? from, int? num}) Future<FindShaderIdsResponse>
Returns a filtered FindShaderIdsResponse with a list of shader ids.
inherited
findShaderIdsByPlaylistId(String playlistId, {int from, int num}) Future<FindShaderIdsResponse>
Returns a FindShaderIdsResponse with a list of shader ids.
inherited
findShaderIdsByUserId(String userId, {Set<String>? filters, Sort? sort, int? from, int? num}) Future<FindShaderIdsResponse>
Returns a filtered FindShaderIdsResponse with a list of shader ids. for the user userId
inherited
findShaders({String? term, Set<String>? filters, Sort? sort, int? from, int? num}) Future<FindShadersResponse>
Returns a filtered FindShadersResponse with a list of shaders
inherited
findShadersByIdSet(Set<String> shaderIds) Future<FindShadersResponse>
Returns a FindShadersResponse for each shader id in shaderIds
inherited
findShadersByPlaylistId(String playlistId, {int? from, int? num}) Future<FindShadersResponse>
Returns a FindShadersResponse with a list of shaders. for the playlist playlistId
inherited
findShadersByUserId(String userId, {Set<String>? filters, Sort? sort, int? from, int? num}) Future<FindShadersResponse>
Returns a filtered FindShadersResponse for user userId
inherited
findSyncById(SyncType type, String target) Future<FindSyncResponse>
Returns a FindSyncResponse for sync with type and target
inherited
findSyncs({SyncType? type, String? target, Set<SyncStatus>? status, DateTime? createdBefore, DateTime? updatedBefore}) Future<FindSyncsResponse>
Returns a filtered FindSyncsResponse with a list of syncs
inherited
findUserById(String userId) Future<FindUserResponse>
Returns a FindUserResponse for user with userId
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
savePlaylist(Playlist playlist, {List<String> shaderIds}) Future<SavePlaylistResponse>
Saves a Playlist and optionally the playlist shaders
inherited
savePlaylistShaders(String playlistId, List<String> shaderIds) Future<SavePlaylistShadersResponse>
Associates a list of shader is with a playlist
inherited
saveShader(Shader shader) Future<SaveShaderResponse>
Saves a Shader
inherited
saveShaderComment(Comment comment) Future<SaveShaderCommentResponse>
Saves a shader comment
inherited
saveShaderComments(String shaderId, List<Comment> comments) Future<SaveShaderCommentsResponse>
Saves a list of shaderId comments
inherited
saveShaders(List<Shader> shaders) Future<SaveShadersResponse>
Saves a list of Shader
inherited
saveSync(Sync sync) Future<SaveSyncResponse>
Saves a Sync
inherited
saveSyncs(List<Sync> syncs) Future<SaveSyncsResponse>
Saves a list of Sync
inherited
saveUser(User user) Future<SaveUserResponse>
Saves a User
inherited
saveUsers(List<User> users) Future<SaveUsersResponse>
Saves a list of User
inherited
toString() String
A string representation of this object.
inherited

Operators

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