minimum property Null safety

num? minimum
read / write

The value of "minimum" MUST be a number, representing a lower limit for a numeric instance. If the instance is a number, then this keyword validates if "exclusiveMinimum" is true and instance is greater than the provided value, or else if the instance is greater than or exactly equal to the provided value.

Implementation

/// If the instance is a number, then this keyword validates if
/// "exclusiveMinimum" is true and instance is greater than the provided
/// value, or else if the instance is greater than or exactly equal to
/// the provided value.
num? minimum;