RotatingGlobe constructor

const RotatingGlobe({
  1. Key? key,
  2. required FlutterEarthGlobeController controller,
  3. required double radius,
  4. required Alignment alignment,
  5. void onZoomChanged(
    1. double zoom
    )?,
  6. void onHover(
    1. GlobeCoordinates? coordinates
    )?,
  7. void onTap(
    1. GlobeCoordinates? coordinates
    )?,
})

Implementation

const RotatingGlobe({
  Key? key,
  required this.controller,
  required this.radius,
  required this.alignment,
  this.onZoomChanged,
  this.onHover,
  this.onTap,
}) : super(key: key);