toColorMetadata method

ColorMetadata toColorMetadata()

Implementation

ColorMetadata toColorMetadata() {
  switch (this) {
    case 'IGNORE':
      return ColorMetadata.ignore;
    case 'INSERT':
      return ColorMetadata.insert;
  }
  throw Exception('$this is not known in enum ColorMetadata');
}