toValue method
Implementation
String toValue() {
switch (this) {
case CacheType.noCache:
return 'NO_CACHE';
case CacheType.s3:
return 'S3';
case CacheType.local:
return 'LOCAL';
}
}
String toValue() {
switch (this) {
case CacheType.noCache:
return 'NO_CACHE';
case CacheType.s3:
return 'S3';
case CacheType.local:
return 'LOCAL';
}
}