35 lines
1.0 KiB
Dart
35 lines
1.0 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'community_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 _$CommunityStore on _CommunityStore, Store {
|
|
late final _$refreshAsyncAction =
|
|
AsyncAction('_CommunityStore.refresh', context: context);
|
|
|
|
@override
|
|
Future<void> refresh(Jwt? token) {
|
|
return _$refreshAsyncAction.run(() => super.refresh(token));
|
|
}
|
|
|
|
late final _$subscribeAsyncAction =
|
|
AsyncAction('_CommunityStore.subscribe', context: context);
|
|
|
|
@override
|
|
Future<void> subscribe(Jwt token) {
|
|
return _$subscribeAsyncAction.run(() => super.subscribe(token));
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
return '''
|
|
|
|
''';
|
|
}
|
|
}
|