openSound static method

Future<bool> openSound()

打开声音

Implementation

static Future<bool> openSound() async {
  bool result = await _channel.invokeMethod("openSound");
  return result;
}