getValues method
Implementation
@override
List getValues(StudySubject subject) {
return subject.interventionOrder
.expand(
(intervention) => List<String>.filled(
subject.study.schedule.phaseDuration,
intervention,
),
)
.toList();
}