toLastFrameClippingBehavior method

LastFrameClippingBehavior toLastFrameClippingBehavior()

Implementation

LastFrameClippingBehavior toLastFrameClippingBehavior() {
  switch (this) {
    case 'EXCLUDE_LAST_FRAME':
      return LastFrameClippingBehavior.excludeLastFrame;
    case 'INCLUDE_LAST_FRAME':
      return LastFrameClippingBehavior.includeLastFrame;
  }
  throw Exception('$this is not known in enum LastFrameClippingBehavior');
}