buildBottom method
Implementation
Widget buildBottom() {
return customLabel ??
(label != null
? Text(label!,
style: TextStyle(
fontSize: sizes[size]['labelFontSize'],
color: Style.cellLabelColor))
: Container());
}