Indicator<T extends ShapePainter> constructor

const Indicator<T extends ShapePainter>({
  1. Key? key,
  2. required T painter,
})

Implementation

const Indicator({
  Key? key,
  required this.painter,
}) : super(key: key);