AppStateDeclaration constructor

const AppStateDeclaration({
  1. required String name,
  2. String? description,
  3. required DslType type,
  4. required bool persisted,
})

Implementation

const AppStateDeclaration({
  required this.name,
  this.description,
  required this.type,
  required this.persisted,
});