toFunctionVersion method

FunctionVersion toFunctionVersion()

Implementation

FunctionVersion toFunctionVersion() {
  switch (this) {
    case 'ALL':
      return FunctionVersion.all;
  }
  throw Exception('$this is not known in enum FunctionVersion');
}