AppCycleView constructor

const AppCycleView({
  1. required AppCycle appCycle,
  2. required Widget child,
  3. Key? key,
})

Implementation

const AppCycleView({
  required this.appCycle,
  required this.child,
  Key? key,
}) : super(key: key);