Indicator.widget constructor

Indicator.widget({
  1. Key? key,
  2. double? size,
  3. double? position,
  4. Widget? child,
})

Creates a widget indicator.

See also:

Implementation

factory Indicator.widget({
  Key? key,
  double? size,
  double? position,
  Widget? child,
}) =>
    ContainerIndicator(
      size: size,
      position: position,
      child: child,
    );