release method

Future<void> release()

Release sound system. After releasing it, you can't do anything with this sound system. You can reuse it by calling init method again

Implementation

Future<void> release() async {
  await _channel.invokeMethod("release");
}