PageViewControllerVariable constructor
const
PageViewControllerVariable({
- required ID id,
- required String name,
- 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,
);