Indicator.transparent constructor

Indicator.transparent({
  1. Key? key,
  2. double? size,
  3. double? position,
})

Creates a transparent indicator.

See also:

Implementation

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