toChangeType method

ChangeType toChangeType()

Implementation

ChangeType toChangeType() {
  switch (this) {
    case 'Resource':
      return ChangeType.resource;
  }
  throw Exception('$this is not known in enum ChangeType');
}