semanticsLabel method
语义调试 MaterialApp.showSemanticsDebugger: true,
Implementation
Widget semanticsLabel(
String label, {
Key? key,
}) =>
Semantics.fromProperties(
key: key,
properties: SemanticsProperties(label: label),
child: this,
);