buildTitle method
Implementation
Widget buildTitle(BuildContext context) {
String? state = adapterState?.toString().split(".").last;
return Text(
'Bluetooth Adapter is ${state != null ? state : 'not available'}',
style: Theme.of(context).primaryTextTheme.titleSmall?.copyWith(color: Colors.white),
);
}