EntryCell<T> constructor

const EntryCell<T>({
  1. Key? key,
  2. required Entry<T> entry,
  3. required int depth,
  4. required bool isLastExerciseInList,
})

Implementation

const EntryCell({
  super.key,
  required this.entry,
  required this.depth,
  required this.isLastExerciseInList,
});