TextFieldTapRegion constructor Null safety
- {Key? key,
- required Widget? child,
- bool enabled = true,
- TapRegionCallback? onTapOutside,
- TapRegionCallback? onTapInside,
- String? debugLabel}
Creates a const TextFieldTapRegion.
The child field is required.
Implementation
const TextFieldTapRegion({
super.key,
required super.child,
super.enabled,
super.onTapOutside,
super.onTapInside,
super.debugLabel,
}) : super(groupId: EditableText);