titleToWidget method
Implementation
Widget titleToWidget(BuildContext context) {
if (text != null) {
return Text(
text!,
style: Theme.of(context)
.textTheme
.bodyMedium
?.copyWith(color: Colors.white),
);
}
return const SizedBox(
height: 1,
);
}