LoadSound method

SoundD LoadSound(
  1. String fileName
)

Load sound from file

Implementation

SoundD LoadSound(
  String fileName,
) => run(
  () => _debugLabels.LoadSound(fileName),
  () => _flat.LoadSound(
    $.String$.ValueOrNull(fileName),
  ),
);