textStyleLocal method

dynamic textStyleLocal()

Implementation

textStyleLocal() {
  return TextStyle(
      color: isTextOnly ? (textColor ?? Clr.colorBlack) : textColor,
      fontSize: textSize,
      fontWeight: hasBold ? FontWeight.bold : FontWeight.normal);
}