value property
String
get
value
Convert to string value for API requests
Implementation
String get value {
switch (this) {
case Verbosity.low:
return 'low';
case Verbosity.medium:
return 'medium';
case Verbosity.high:
return 'high';
}
}