33 lines
1 KiB
Dart
33 lines
1 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'album_page_store.dart';
|
|
|
|
// **************************************************************************
|
|
// StoreGenerator
|
|
// **************************************************************************
|
|
|
|
// ignore_for_file: non_constant_identifier_names, unnecessary_brace_in_string_interps, unnecessary_lambdas, prefer_expression_function_bodies, lines_longer_than_80_chars, avoid_as, avoid_annotating_with_dynamic
|
|
|
|
mixin _$AlbumPageStore on _AlbumPageStore, Store {
|
|
final _$albumSongStreamAtom = Atom(name: '_AlbumPageStore.albumSongStream');
|
|
|
|
@override
|
|
ObservableStream<List<Song>> get albumSongStream {
|
|
_$albumSongStreamAtom.reportRead();
|
|
return super.albumSongStream;
|
|
}
|
|
|
|
@override
|
|
set albumSongStream(ObservableStream<List<Song>> value) {
|
|
_$albumSongStreamAtom.reportWrite(value, super.albumSongStream, () {
|
|
super.albumSongStream = value;
|
|
});
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
return '''
|
|
albumSongStream: ${albumSongStream}
|
|
''';
|
|
}
|
|
}
|