toMotionImagePlayback method
Implementation
MotionImagePlayback toMotionImagePlayback() {
switch (this) {
case 'ONCE':
return MotionImagePlayback.once;
case 'REPEAT':
return MotionImagePlayback.repeat;
}
throw Exception('$this is not known in enum MotionImagePlayback');
}