fontSize method

T fontSize(
  1. double size
)

Implementation

T fontSize(double size) => copyWith(
      style: (style ?? const TextStyle()).copyWith(
        fontSize: size,
      ),
    ) as T;