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