drawContours method

Image drawContours(
  1. List<Contour> contours,
  2. Color color, {
  3. bool filled = true,
})

Implementation

Image drawContours(List<Contour> contours,Color color, {bool filled = true}){

  contours.forEach((element) {
    drawContour(element,color, filled);
  });

  return this;
}