play method

dynamic play({
  1. double at = 0.0,
})

Implementation

play({double at = 0.0}) {
  if (checkInstallPlatform()) {
    playing = true;
    _platform.play(at);
  }
}