copyWith method

PolylineLayerOptions copyWith({
  1. bool? debug,
})

Implementation

PolylineLayerOptions copyWith({bool? debug}) {
  return PolylineLayerOptions(debug: debug ?? this.debug);
}