buildTitle method
Implementation
Widget buildTitle(context) {
final title = options!.title ?? whatTitle();
return Visibility(
visible: title != null,
child: Text(
'$title',
textAlign: options!.titleAlignment ?? TextAlign.center,
style: TextStyle(
color: options!.titleColor,
).merge(
Theme.of(context).textTheme.headlineSmall,
),
),
);
}