toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final lastFrameClippingBehavior = this.lastFrameClippingBehavior;
  final timecode = this.timecode;
  return {
    if (lastFrameClippingBehavior != null)
      'lastFrameClippingBehavior': lastFrameClippingBehavior.toValue(),
    if (timecode != null) 'timecode': timecode,
  };
}