mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-08-08 06:02:14 -04:00
break everything
This commit is contained in:
parent
e898074387
commit
29210c89d2
121 changed files with 2892 additions and 2608 deletions
12
lib/router/cubit/router_state.dart
Normal file
12
lib/router/cubit/router_state.dart
Normal file
|
@ -0,0 +1,12 @@
|
|||
part of 'router_cubit.dart';
|
||||
|
||||
@freezed
|
||||
class RouterState with _$RouterState {
|
||||
const factory RouterState(
|
||||
{required bool isInitialized,
|
||||
required bool hasAnyAccount,
|
||||
required bool hasActiveChat}) = _RouterState;
|
||||
|
||||
factory RouterState.fromJson(dynamic json) =>
|
||||
_$RouterStateFromJson(json as Map<String, dynamic>);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue