toNestingLevelValue method

NestingLevelValue toNestingLevelValue()

Implementation

NestingLevelValue toNestingLevelValue() {
  switch (this) {
    case 'none':
      return NestingLevelValue.none;
    case 'one':
      return NestingLevelValue.one;
  }
  throw Exception('$this is not known in enum NestingLevelValue');
}