ReferralPeriod constructor

ReferralPeriod({
  1. DateTime? startDate,
  2. DateTime? endDate,
  3. String? comment,
})

Implementation

ReferralPeriod({
		DateTime? startDate,
		DateTime? endDate,
		String? comment
	}) : startDate = startDate ?? null,
	endDate = endDate ?? null,
	comment = comment ?? null;