toOutputSchemaVersion method

OutputSchemaVersion toOutputSchemaVersion()

Implementation

OutputSchemaVersion toOutputSchemaVersion() {
  switch (this) {
    case 'V_1':
      return OutputSchemaVersion.v_1;
  }
  throw Exception('$this is not known in enum OutputSchemaVersion');
}