setPitch method

Future<void> setPitch(
  1. double pitch
)

Sets the relative pitch of the Player. Defaults to 1.0.

Implementation

Future<void> setPitch(double pitch) async {
  return platform?.setPitch(pitch);
}