NiceMapRegion constructor

const NiceMapRegion({
  1. required String id,
  2. required String label,
  3. double value = 0,
  4. Color? color,
  5. Offset center = Offset.zero,
  6. double radius = 20,
})

Implementation

const NiceMapRegion({
  required this.id,
  required this.label,
  this.value = 0,
  this.color,
  this.center = Offset.zero,
  this.radius = 20,
});