videoDuration_ property
Implementation
@JsonKey(includeFromJson: false, includeToJson: false)
Duration? get videoDuration_ =>
videoDuration == null ? null : TimeHelper.toDuration(videoDuration!);
set
videoDuration_
(Duration? duration)
Implementation
set videoDuration_(Duration? duration) =>
videoDuration = duration == null ? null : TimeHelper.toSeconds(duration);