We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f14793 commit a6fee37Copy full SHA for a6fee37
lib/content_management/bloc/create_source/create_source_event.dart
@@ -32,6 +32,14 @@ final class CreateSourceUrlChanged extends CreateSourceEvent {
32
List<Object?> get props => [url];
33
}
34
35
+/// Event for when the source's logo URL is changed.
36
+final class CreateSourceLogoUrlChanged extends CreateSourceEvent {
37
+ const CreateSourceLogoUrlChanged(this.logoUrl);
38
+ final String logoUrl;
39
+ @override
40
+ List<Object?> get props => [logoUrl];
41
+}
42
+
43
/// Event for when the source's type is changed.
44
final class CreateSourceTypeChanged extends CreateSourceEvent {
45
const CreateSourceTypeChanged(this.sourceType);
0 commit comments