menu
orkitt package
documentation
utils.dart
ClampValue
clampValue method
clampValue method
dark_mode
light_mode
clampValue
method
num
clampValue
(
num
min
,
num
max
)
Implementation
num clampValue(num min, num max) { return (this < min) ? min : (this > max) ? max : this; }
orkitt package
documentation
utils
ClampValue
clampValue method
ClampValue extension on
num