mode property

String mode

Mode in which the points are currently being deployed.

If not provided during PUT/POST it will be defaulted to interpolated_palette

Throws InvalidValueException if modeValues does not contain mode.

Implementation

String get mode => _mode;
void mode=(String mode)

Implementation

set mode(String mode) {
  if (Validators.isValidValue(mode, modeValues)) {
    _mode = mode;
  } else {
    throw InvalidValueException.withValue(mode, modeValues);
  }
}