setPitch method

dynamic setPitch(
  1. double pitch
)

Implementation

setPitch(double pitch) {
  if (checkInstallPlatform()) {
    this.pitch = pitch;
    _platform.setPitch((pitch*10)/100);
  }
}