toValue method
Implementation
String toValue() {
switch (this) {
case CompressionType.none:
return 'None';
case CompressionType.gzip:
return 'Gzip';
}
}
String toValue() {
switch (this) {
case CompressionType.none:
return 'None';
case CompressionType.gzip:
return 'Gzip';
}
}