ContainerIndicator constructor

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

Creates a container indicator.

Implementation

const ContainerIndicator({
  Key? key,
  double? size,
  double? position,
  this.child,
}) : super(
        key: key,
        size: size,
        position: position,
        color: Colors.transparent,
      );