2021-10-02 23:15:15 +02:00
|
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
|
|
|
|
part of 'community_block_store.dart';
|
|
|
|
|
|
|
|
// **************************************************************************
|
|
|
|
// StoreGenerator
|
|
|
|
// **************************************************************************
|
|
|
|
|
2022-07-15 21:21:02 +02:00
|
|
|
// 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, no_leading_underscores_for_local_identifiers
|
2021-10-02 23:15:15 +02:00
|
|
|
|
|
|
|
mixin _$CommunityBlockStore on _CommunityBlockStore, Store {
|
2022-04-30 14:56:02 +02:00
|
|
|
late final _$blockedAtom =
|
|
|
|
Atom(name: '_CommunityBlockStore.blocked', context: context);
|
2021-10-02 23:15:15 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
bool get blocked {
|
|
|
|
_$blockedAtom.reportRead();
|
|
|
|
return super.blocked;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
set blocked(bool value) {
|
|
|
|
_$blockedAtom.reportWrite(value, super.blocked, () {
|
|
|
|
super.blocked = value;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() {
|
|
|
|
return '''
|
|
|
|
blocked: ${blocked}
|
|
|
|
''';
|
|
|
|
}
|
|
|
|
}
|