PageViewControllerVariable constructor

const PageViewControllerVariable({
  1. required ID id,
  2. required String name,
  3. required PageController? pageController,
})

Implementation

const PageViewControllerVariable({
  required ID id,
  required String name,
  required this.pageController,
}) : super(
        id: id,
        name: name,
        type: VariableTypes.pageViewController,
        isNullable: false,
      );