copyWith method

FillOptions copyWith(
  1. FillOptions changes
)

Implementation

FillOptions copyWith(FillOptions changes) {
  return FillOptions(
    fillOpacity: changes.fillOpacity ?? fillOpacity,
    fillColor: changes.fillColor ?? fillColor,
    fillOutlineColor: changes.fillOutlineColor ?? fillOutlineColor,
    fillPattern: changes.fillPattern ?? fillPattern,
    geometry: changes.geometry ?? geometry,
    draggable: changes.draggable ?? draggable,
  );
}