renderTitle method
Implementation
Widget renderTitle() {
return SizedBox(
height: 50.0,
child: Align(
alignment: Alignment.center,
child: DefaultTextStyle(
style: TextStyle(
color: Colors.black,
fontSize: 17.0,
fontWeight: FontWeight.w500),
child: toTextWidget(widget.title, 'title')!)));
}