PlaySound constructor

PlaySound(
  1. Object? url, {
  2. String name = 'sound',
  3. double volume = 1.0,
  4. bool awaitPlayback = false,
})

Implementation

PlaySound(
  Object? url, {
  this.name = 'sound',
  this.volume = 1.0,
  this.awaitPlayback = false,
}) : url = normalizeExpression(url);