Files
MrbWebLibre/app/lib/features/geckoview/domain/entities/states/readerable.dart
T
2025-02-20 12:27:34 +01:00

19 lines
430 B
Dart

import 'package:fast_equatable/fast_equatable.dart';
class ReaderableState with FastEquatable {
final bool readerable;
final bool active;
ReaderableState({required this.readerable, required this.active});
factory ReaderableState.$default() =>
ReaderableState(readerable: false, active: false);
@override
bool get cacheHash => true;
@override
List<Object?> get hashParameters => [readerable, active];
}