toStackSetOperationType method

StackSetOperationType toStackSetOperationType()

Implementation

StackSetOperationType toStackSetOperationType() {
  switch (this) {
    case 'CREATE':
      return StackSetOperationType.create;
    case 'UPDATE':
      return StackSetOperationType.update;
    case 'DELETE':
      return StackSetOperationType.delete;
  }
  throw Exception('$this is not known in enum StackSetOperationType');
}