setFontSize method

Text setFontSize(
  1. double fontSize
)

Change the fontSize.

Implementation

Text setFontSize(double fontSize) {
  if (style == null) {
    return copyWith(style: TextStyle(fontSize: fontSize));
  }
  return this.setStyle(TextStyle(fontSize: fontSize));
}