LoadSound method

SoundD LoadSound(
  1. String fileName
)

Implementation

SoundD LoadSound(
  String fileName,
) => run(
  () => 'LoadSound($fileName)',
  () => _refCaptureSound(
    'LoadSound_$fileName',
    rl.Audio.LoadSound(
      refStr(fileName),
    ),
  ),
);