build method

  1. @override
Widget build(
  1. BuildContext context
)
override

Implementation

@override
Widget build(BuildContext context) {
  return Semantics(
    explicitChildNodes: explicitChildNodes ?? false,
    excludeSemantics: excludeSemantics ?? false,
    enabled: enabled,
    checked: checked,
    selected: selected,
    toggled: toggled,
    button: button,
    header: header,
    textField: textField,
    readOnly: readOnly,
    focusable: focusable,
    focused: focused,
    inMutuallyExclusiveGroup: inMutuallyExclusiveGroup,
    obscured: obscured,
    multiline: multiline,
    scopesRoute: scopesRoute,
    namesRoute: namesRoute,
    hidden: hidden,
    image: image,
    liveRegion: liveRegion,
    maxValueLength: maxValueLength,
    currentValueLength: currentValueLength,
    label: label,
    hint: hint,
    value: value,
    increasedValue: increasedValue,
    decreasedValue: decreasedValue,
    onTapHint: onTapHint,
    onLongPressHint: onLongPressHint,
    child: child?.build(context),
  );
}