toExportType method

ExportType toExportType()

Implementation

ExportType toExportType() {
  switch (this) {
    case 'ALEXA_SKILLS_KIT':
      return ExportType.alexaSkillsKit;
    case 'LEX':
      return ExportType.lex;
  }
  throw Exception('$this is not known in enum ExportType');
}