t method

double t(
  1. BuildContext context
)

.t can be used to figure out the font size of a text

Implementation

double t(BuildContext context) {
  return (h(context) + w(context)) / 2;
}