semantics method

Widget semantics(
  1. String id
)

Implementation

Widget semantics(String id) {
  return Semantics(
    identifier: id,
    attributedValue: AttributedString(id),
    textDirection: TextDirection.ltr,
    textField: true,
    child: this,
  );
}