toChangeTypeEnum method

ChangeTypeEnum toChangeTypeEnum()

Implementation

ChangeTypeEnum toChangeTypeEnum() {
  switch (this) {
    case 'A':
      return ChangeTypeEnum.a;
    case 'M':
      return ChangeTypeEnum.m;
    case 'D':
      return ChangeTypeEnum.d;
  }
  throw Exception('$this is not known in enum ChangeTypeEnum');
}