toDriveCacheType method

DriveCacheType toDriveCacheType()

Implementation

DriveCacheType toDriveCacheType() {
  switch (this) {
    case 'NONE':
      return DriveCacheType.none;
    case 'READ':
      return DriveCacheType.read;
  }
  throw Exception('$this is not known in enum DriveCacheType');
}