buildHeaderText method

SuffaText buildHeaderText(
  1. dynamic title,
  2. Color? color
)

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,
  );
}