Flutter TextButton Autofocus

TextButton(
              autofocus: true, // boolean
              onPressed: (){}, 
              child: const Text('TextButton')
            )
Sore Serval