fontSize method

T fontSize(
  1. double size
)

Implementation

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