SmoothCompass constructor

const SmoothCompass({
  1. Key? key,
  2. required WidgetBuilder compassBuilder,
  3. Widget? compassAsset,
  4. int? rotationSpeed = 200,
  5. double? height = 200,
  6. double? width = 200,
  7. Widget? loadingAnimation,
})

Implementation

const SmoothCompass(
    {Key? key,
    required this.compassBuilder,
    this.compassAsset,
    this.rotationSpeed = 200,
    this.height = 200,
    this.width = 200,
    this.loadingAnimation})
    : super(key: key);