TF-4354 Remove all logic related to Label Visibility in Settings
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class GettingLabelVisibility extends LoadingState {}
|
||||
|
||||
class GetLabelVisibilitySuccess extends UIState {
|
||||
final bool visible;
|
||||
|
||||
GetLabelVisibilitySuccess(this.visible);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [...super.props, visible];
|
||||
}
|
||||
|
||||
class GetLabelVisibilityFailure extends FeatureFailure {
|
||||
GetLabelVisibilityFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class SavingLabelVisibility extends LoadingState {}
|
||||
|
||||
class SaveLabelVisibilitySuccess extends UIState {}
|
||||
|
||||
class SaveLabelVisibilityFailure extends FeatureFailure {
|
||||
SaveLabelVisibilityFailure(dynamic exception) : super(exception: exception);
|
||||
}
|
||||
Reference in New Issue
Block a user