AppKitState constructor

AppKitState({
  1. required bool loading,
  2. required bool open,
  3. required String? selectedNetworkId,
  4. required String? activeChain,
})

Implementation

AppKitState({
  required this.loading,
  required this.open,
  required this.selectedNetworkId,
  required this.activeChain,
});