AppEventHandle constructor

const AppEventHandle({
  1. required String name,
  2. required String key,
  3. required AppEventScope scope,
  4. required StructHandle? dataStruct,
  5. bool isNamedLookup = false,
})

Implementation

const AppEventHandle({
  required this.name,
  required this.key,
  required this.scope,
  required this.dataStruct,
  this.isNamedLookup = false,
});