toMovClapAtom method
Implementation
MovClapAtom toMovClapAtom() {
switch (this) {
case 'INCLUDE':
return MovClapAtom.include;
case 'EXCLUDE':
return MovClapAtom.exclude;
}
throw Exception('$this is not known in enum MovClapAtom');
}