gimbalRotatePitch method Null safety

Future<void> gimbalRotatePitch(
  1. {required double degrees}
)

Update Gimbal pitch value in degrees

Controls the Gimbal pitch in degrees (-90..0) in Absolute Mode. An angle of "0" degrees is aligned with the drone's "nose" (heading), and -90 degrees is the gimbal pointing the camera all the way down.

Implementation

static Future<void> gimbalRotatePitch({
  required double degrees,
}) async {
  await _api?.gimbalRotatePitch(
    degrees,
  );
}