ShapeLayer constructor

const ShapeLayer({
  1. Key? key,
  2. required MapTransformer transformer,
  3. required List<Shape> shapes,
})

Main constructor.

Implementation

const ShapeLayer({
  Key? key,
  required this.transformer,
  required this.shapes,
}) : super(key: key);