buildHeaderText method
Implementation
SuffaText buildHeaderText(title, Color? color) {
return SuffaText(
title: title,
textSize: 18,
alignment: Alignment.center,
padding: const EdgeInsets.all(0),
textColor: color ?? Colors.grey.shade200,
);
}