voiceDuration_ property

  1. @JsonKey(includeFromJson: false, includeToJson: false)
Duration? voiceDuration_

Implementation

@JsonKey(includeFromJson: false, includeToJson: false)
Duration? get voiceDuration_ =>
    voiceDuration == null ? null : TimeHelper.toDuration(voiceDuration!);
void voiceDuration_=(Duration? duration)

Implementation

set voiceDuration_(Duration? duration) =>
    voiceDuration = duration == null ? null : TimeHelper.toSeconds(duration);