intermediate

This commit is contained in:
Fabian Freund
2024-09-13 09:11:06 +02:00
parent 3b047b5d8a
commit 37d2c84d7f
155 changed files with 5666 additions and 1816 deletions
@@ -0,0 +1,23 @@
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];
}