isSpeakerphoneOn method

Future<bool> isSpeakerphoneOn ()

获取扬声器是否开启

Implementation

Future<bool> isSpeakerphoneOn() async {
  BoolValue reply = await _api.isSpeakerphoneOn();
  return reply.value;
}