closeSound static method

Future<bool> closeSound()

关闭声音

Implementation

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