CSSMathMin extension type

The CSSMathMin interface of the represents the CSS min() function. It inherits properties and methods from its parent CSSNumericValue.

on
Implemented types

Constructors

CSSMathMin(CSSNumberish args)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
operator CSSMathOperator
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values CSSNumericArray
no setter

Methods

add(CSSNumberish values) CSSNumericValue
The add() method of the CSSNumericValue interface adds a supplied number to the CSSNumericValue.
inherited
div(CSSNumberish values) CSSNumericValue
The div() method of the CSSNumericValue interface divides the CSSNumericValue by the supplied value.
inherited
equals(CSSNumberish value) bool
The equals() method of the CSSNumericValue interface returns a boolean indicating whether the passed value are strictly equal. To return a value of true, all passed values must be of the same type and value and must be in the same order. This allows structural equality to be tested quickly.
inherited
max(CSSNumberish values) CSSNumericValue
The max() method of the CSSNumericValue interface returns the highest value from among the values passed. The passed values must be of the same type.
inherited
min(CSSNumberish values) CSSNumericValue
The min() method of the CSSNumericValue interface returns the lowest value from among those values passed. The passed values must be of the same type.
inherited
mul(CSSNumberish values) CSSNumericValue
The mul() method of the CSSNumericValue interface multiplies the CSSNumericValue by the supplied value.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
sub(CSSNumberish values) CSSNumericValue
The sub() method of the CSSNumericValue interface subtracts a supplied number from the CSSNumericValue.
inherited
to(String unit) CSSUnitValue
The to() method of the CSSNumericValue interface converts a numeric value from one unit to another.
inherited
toString() String
A string representation of this object.
inherited
toSum(String units) CSSMathSum
The toSum() method of the CSSNumericValue interface converts the object's value to a CSSMathSum object to values of the specified unit.
inherited
type() CSSNumericType
The type() method of the CSSNumericValue interface returns the type of CSSNumericValue, one of angle, flex, frequency, length, resolution, percent, percentHint, or time.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited