1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
thesis_shop/lib/stores/user_store.g.dart

57 lines
1.5 KiB

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'user_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 _$UserStore on _UserStore, Store {
final _$isSignedInAtom = Atom(name: '_UserStore.isSignedIn');
@override
bool get isSignedIn {
_$isSignedInAtom.reportRead();
return super.isSignedIn;
}
@override
set isSignedIn(bool value) {
_$isSignedInAtom.reportWrite(value, super.isSignedIn, () {
super.isSignedIn = value;
});
}
final _$_UserStoreActionController = ActionController(name: '_UserStore');
@override
void logIn() {
final _$actionInfo =
_$_UserStoreActionController.startAction(name: '_UserStore.logIn');
try {
return super.logIn();
} finally {
_$_UserStoreActionController.endAction(_$actionInfo);
}
}
@override
void logOut() {
final _$actionInfo =
_$_UserStoreActionController.startAction(name: '_UserStore.logOut');
try {
return super.logOut();
} finally {
_$_UserStoreActionController.endAction(_$actionInfo);
}
}
@override
String toString() {
return '''
isSignedIn: ${isSignedIn}
''';
}
}