PlatformIndicator constructor

const PlatformIndicator({
  1. Key? key,
  2. required Animation<double> animation,
  3. Color? color,
})

Implementation

const PlatformIndicator({
  super.key,
  required this.animation, // kept for API consistency
  this.color,
});