Degrees constructor

const Degrees({
  1. Key? key,
  2. required MagnetometerRepository magnetometerRepo,
  3. TextStyle? textStyle,
  4. bool showDegreesSimbol = true,
})

Implementation

const Degrees(
    {Key? key,
    required this.magnetometerRepo,
    this.textStyle,
    this.showDegreesSimbol = true})
    : super(key: key);