toCopyOption method

CopyOption toCopyOption()

Implementation

CopyOption toCopyOption() {
  switch (this) {
    case 'CopyTags':
      return CopyOption.copyTags;
  }
  throw Exception('$this is not known in enum CopyOption');
}