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