// GENERATED CODE - DO NOT MODIFY BY HAND part of 'full_post_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 _$FullPostStore on _FullPostStore, Store { Computed? _$postViewComputed; @override PostView? get postView => (_$postViewComputed ??= Computed(() => super.postView, name: '_FullPostStore.postView')) .value; Computed?>? _$commentsComputed; @override List? get comments => (_$commentsComputed ??= Computed?>(() => super.comments, name: '_FullPostStore.comments')) .value; final _$fullPostViewAtom = Atom(name: '_FullPostStore.fullPostView'); @override FullPostView? get fullPostView { _$fullPostViewAtom.reportRead(); return super.fullPostView; } @override set fullPostView(FullPostView? value) { _$fullPostViewAtom.reportWrite(value, super.fullPostView, () { super.fullPostView = value; }); } final _$newCommentsAtom = Atom(name: '_FullPostStore.newComments'); @override List get newComments { _$newCommentsAtom.reportRead(); return super.newComments; } @override set newComments(List value) { _$newCommentsAtom.reportWrite(value, super.newComments, () { super.newComments = value; }); } final _$postStoreAtom = Atom(name: '_FullPostStore.postStore'); @override PostStore? get postStore { _$postStoreAtom.reportRead(); return super.postStore; } @override set postStore(PostStore? value) { _$postStoreAtom.reportWrite(value, super.postStore, () { super.postStore = value; }); } final _$refreshAsyncAction = AsyncAction('_FullPostStore.refresh'); @override Future refresh() { return _$refreshAsyncAction.run(() => super.refresh()); } @override String toString() { return ''' fullPostView: ${fullPostView}, newComments: ${newComments}, postStore: ${postStore}, postView: ${postView}, comments: ${comments} '''; } }