NMultipartPath constructor

const NMultipartPath({
  1. required Iterable<NLatLng> coords,
  2. Color color = Colors.white,
  3. Color outlineColor = Colors.black,
  4. Color passedColor = Colors.white,
  5. Color passedOutlineColor = Colors.black,
})

Implementation

const NMultipartPath({
  required this.coords,
  this.color = Colors.white,
  this.outlineColor = Colors.black,
  this.passedColor = Colors.white,
  this.passedOutlineColor = Colors.black,
});