generator_init function
Implementation
Future<int> generator_init(
Pointer<Generator> self,
int sound_format,
int channels,
int sample_rate,
double buffer_duration_seconds,
) async =>
_generator_init(
self.addr,
sound_format,
channels,
sample_rate,
buffer_duration_seconds,
);