pitch property
double?
get
pitch
Speaking pitch between 0 and 2 inclusive, with 0 being lowest and 2 being highest. 1.0 corresponds to this voice's default pitch.
Implementation
double? get pitch => _wrapped.pitch;
set
pitch
(double? v)
Implementation
set pitch(double? v) {
_wrapped.pitch = v;
}