toChangeAction method

ChangeAction toChangeAction()

Implementation

ChangeAction toChangeAction() {
  switch (this) {
    case 'INSERT':
      return ChangeAction.insert;
    case 'DELETE':
      return ChangeAction.delete;
  }
  throw Exception('$this is not known in enum ChangeAction');
}