play method

Future<int> play({
  1. required int soundId,
})

Implementation

Future<int> play({required int soundId}) async {
  int streamId = await methodChannel.invokeMethod("play", {"soundId": soundId});
  return streamId;
}