CockpitTargetNode constructor

const CockpitTargetNode({
  1. required String registrationId,
  2. required Widget child,
  3. Key? key,
  4. String? cockpitId,
  5. String? semanticId,
  6. String? text,
  7. String? tooltip,
  8. String? typeName,
  9. Set<CockpitCommandType> supportedCommands = const <CockpitCommandType>{},
  10. CockpitTapHandler? onTap,
  11. CockpitEnterTextHandler? onEnterText,
})

Implementation

const CockpitTargetNode({
  required this.registrationId,
  required this.child,
  super.key,
  this.cockpitId,
  this.semanticId,
  this.text,
  this.tooltip,
  this.typeName,
  this.supportedCommands = const <CockpitCommandType>{},
  this.onTap,
  this.onEnterText,
});