selectShapesAtPoint method

List<GShape> selectShapesAtPoint(
  1. Point p, {
  2. bool recursive = false,
  3. bool growable = true,
})

Implementation

List<GShape> selectShapesAtPoint(Point p,
        {bool recursive = false, bool growable = true}) =>
    expand((e) => e.selectShapesAtPoint(p, recursive: recursive))
        .toList(growable: growable);