toChangeAction method

ChangeAction toChangeAction()

Implementation

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