height property

double get height

Implementation

double get height {
  return switch (this) {
    TInputSize.sm => 38.0,
    TInputSize.lg => 46.0,
    _ => 42.0,
  };
}