getAlarmSoundEnabled method

Future<Map<String, dynamic>> getAlarmSoundEnabled(
  1. String deviceSerial
)

Implementation

Future<Map<String, dynamic>> getAlarmSoundEnabled(String deviceSerial) async {
  return _client.post('/api/v3/device/alarmSound/enabled/get', {
    'deviceSerial': deviceSerial,
  });
}