UCompassGauge constructor

const UCompassGauge({
  1. required double value,
  2. Key? key,
  3. double size = 200,
  4. Color? northColor,
  5. UGaugeStyle style = const UGaugeStyle(),
})

Implementation

const UCompassGauge({
  required this.value,
  super.key,
  this.size = 200,
  this.northColor,
  this.style = const UGaugeStyle(),
});