25 lines
763 B
Dart
25 lines
763 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'audio_store.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// StoreGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
// ignore_for_file: non_constant_identifier_names, unnecessary_lambdas, prefer_expression_function_bodies, lines_longer_than_80_chars, avoid_as, avoid_annotating_with_dynamic
|
||
|
|
||
|
mixin _$AudioStore on _AudioStore, Store {
|
||
|
final _$playSongAsyncAction = AsyncAction('playSong');
|
||
|
|
||
|
@override
|
||
|
Future<void> playSong(int index, List<Song> songList) {
|
||
|
return _$playSongAsyncAction.run(() => super.playSong(index, songList));
|
||
|
}
|
||
|
|
||
|
@override
|
||
|
String toString() {
|
||
|
final string = '';
|
||
|
return '{$string}';
|
||
|
}
|
||
|
}
|