titleWidget method
Implementation
Widget titleWidget(String? value) {
return (value == null)
? const SizedBox()
: Center(
child: Text(
value,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 20.0,
color: theme.primaryColor(),
),
),
);
}