removeDeviceAlias method Null safety
- {required String key}
Removes the device alias with the given key.
- Parameter
key
The key that uniquely identifies the device alias.
Implementation
static void removeDeviceAlias({
required String key,
}) {
Logger.called('removeDeviceAlias');
_register.removeDeviceAlias(key: key);
}