semanticsLabel method

Widget semanticsLabel(
  1. String label, {
  2. Key? key,
})

Implementation

Widget semanticsLabel(
  String label, {
  Key? key,
}) =>
    Semantics.fromProperties(
      key: key,
      properties: SemanticsProperties(label: label),
      child: this,
    );