CockpitTargetNode constructor

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

Implementation

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