toChangeSetType method

ChangeSetType toChangeSetType()

Implementation

ChangeSetType toChangeSetType() {
  switch (this) {
    case 'CREATE':
      return ChangeSetType.create;
    case 'UPDATE':
      return ChangeSetType.update;
    case 'IMPORT':
      return ChangeSetType.import;
  }
  throw Exception('$this is not known in enum ChangeSetType');
}