fontSize property

double get fontSize

Implementation

double get fontSize {
  return switch (this) {
    TInputSize.sm => 13.0,
    TInputSize.lg => 16.0,
    _ => 14.0,
  };
}