AppState constructor

const AppState({
  1. required bool forPlay,
  2. Map<ID, CubitEntity Function()> cubits = const {},
  3. Map<ID, CubitEntity> instantiatedCubits = const {},
  4. Map<ID, MapPagesEntry> inEditorPages = const {},
  5. Map<ID, Widget Function()> forPlayPages = const {},
  6. Map<ID, String Function()> forPlayComponentsIDToName = const {},
})

Implementation

const AppState({
  required this.forPlay,
  this.cubits = const {},
  this.instantiatedCubits = const {},
  this.inEditorPages = const {},
  this.forPlayPages = const {},
  this.forPlayComponentsIDToName = const {},
});