toMotionImageInsertionMode method
Implementation
MotionImageInsertionMode toMotionImageInsertionMode() {
switch (this) {
case 'MOV':
return MotionImageInsertionMode.mov;
case 'PNG':
return MotionImageInsertionMode.png;
}
throw Exception('$this is not known in enum MotionImageInsertionMode');
}