play static method

Future<void> play(
  1. String asset
)

Plays the provided asset.

Implementation

static Future<void> play(String asset) async {
  final web.AudioContext context = web.AudioContext();
  final web.AudioBufferSourceNode source = context.createBufferSource();

  final Response bytes = await (await PlatformUtils.dio).get(
    'assets/assets/$asset',
    options: Options(responseType: ResponseType.bytes),
  );

  final JSPromise<web.AudioBuffer> audioBuffer = context.decodeAudioData(
    (bytes.data as Uint8List).buffer.toJS,
  );

  source.buffer = await audioBuffer.toDart;
  source.connect(context.destination);
  source.start();
}