setMobileDeviceConfig method

Future<void> setMobileDeviceConfig({
  1. required int mobileDeviceId,
  2. String? friendlyName,
})

Handler for set_mobile_device_config.

Configure an existing mobile device agent.

Required Parameters:

  • mobileDeviceId: The mobile device config to update

Optional Parameters:

  • friendlyName: An optional friendly name to identify the mobile device

Implementation

Future<void> setMobileDeviceConfig({
    required int mobileDeviceId,
    String? friendlyName,
}) async => _commandSetMobileDeviceConfig(_client, mobileDeviceId: mobileDeviceId, friendlyName: friendlyName);