AppPageIndicator constructor

const AppPageIndicator({
  1. Key? key,
  2. required int count,
  3. required PageController controller,
  4. required Color color,
  5. void onDotPressed(
    1. int index
    )?,
  6. double? dotSize,
  7. String? semanticPageTitle,
})

Implementation

const AppPageIndicator({
  Key? key,
  required this.count,
  required this.controller,
  required this.color,
  this.onDotPressed,
  this.dotSize,
  String? semanticPageTitle,
})  : semanticPageTitle =
          semanticPageTitle ?? "strings.appPageDefaultTitlePage",
      super(key: key);