toSchemaDiffType method

SchemaDiffType toSchemaDiffType()

Implementation

SchemaDiffType toSchemaDiffType() {
  switch (this) {
    case 'SYNTAX_DIFF':
      return SchemaDiffType.syntaxDiff;
  }
  throw Exception('$this is not known in enum SchemaDiffType');
}