You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.0 KiB
Dart
76 lines
2.0 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'splash_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, no_leading_underscores_for_local_identifiers
|
|
|
|
mixin _$SplashStore on _SplashStoreBase, Store {
|
|
late final _$infoAtom = Atom(name: '_SplashStoreBase.info', context: context);
|
|
|
|
@override
|
|
String get info {
|
|
_$infoAtom.reportRead();
|
|
return super.info;
|
|
}
|
|
|
|
@override
|
|
set info(String value) {
|
|
_$infoAtom.reportWrite(value, super.info, () {
|
|
super.info = value;
|
|
});
|
|
}
|
|
|
|
late final _$isLoadingAtom =
|
|
Atom(name: '_SplashStoreBase.isLoading', context: context);
|
|
|
|
@override
|
|
bool get isLoading {
|
|
_$isLoadingAtom.reportRead();
|
|
return super.isLoading;
|
|
}
|
|
|
|
@override
|
|
set isLoading(bool value) {
|
|
_$isLoadingAtom.reportWrite(value, super.isLoading, () {
|
|
super.isLoading = value;
|
|
});
|
|
}
|
|
|
|
late final _$_SplashStoreBaseActionController =
|
|
ActionController(name: '_SplashStoreBase', context: context);
|
|
|
|
@override
|
|
void setInfo(String value) {
|
|
final _$actionInfo = _$_SplashStoreBaseActionController.startAction(
|
|
name: '_SplashStoreBase.setInfo');
|
|
try {
|
|
return super.setInfo(value);
|
|
} finally {
|
|
_$_SplashStoreBaseActionController.endAction(_$actionInfo);
|
|
}
|
|
}
|
|
|
|
@override
|
|
void setIsLoading(bool value) {
|
|
final _$actionInfo = _$_SplashStoreBaseActionController.startAction(
|
|
name: '_SplashStoreBase.setIsLoading');
|
|
try {
|
|
return super.setIsLoading(value);
|
|
} finally {
|
|
_$_SplashStoreBaseActionController.endAction(_$actionInfo);
|
|
}
|
|
}
|
|
|
|
@override
|
|
String toString() {
|
|
return '''
|
|
info: ${info},
|
|
isLoading: ${isLoading}
|
|
''';
|
|
}
|
|
}
|