maxValue property

  1. @TagNumber.new(2)
String get maxValue

Optional. The maximum column value allowed for a row to pass this validation. At least one of min_value and max_value need to be provided.

Implementation

@$pb.TagNumber(2)
$core.String get maxValue => $_getSZ(1);
  1. @TagNumber.new(2)
set maxValue (String v)

Implementation

@$pb.TagNumber(2)
set maxValue($core.String v) {
  $_setString(1, v);
}