min<T> static method

Validator min<T>(
  1. T min
)

Creates a validator that requires the control's value to be greater than or equal to min value.

The argument min must not be null.

Implementation

static Validator<dynamic> min<T>(T min) => MinValidator<T>(min);