AppEventDeclaration constructor

const AppEventDeclaration({
  1. required String name,
  2. required String key,
  3. required AppEventScope scope,
  4. required StructHandle? dataStruct,
  5. required ActionBlockTarget? handler,
  6. String description = '',
})

Implementation

const AppEventDeclaration({
  required this.name,
  required this.key,
  required this.scope,
  required this.dataStruct,
  required this.handler,
  this.description = '',
});