Get the shortcut application list that cannot be deleted by the firmware
Function table: getDeletableMenuListV2
Example
Swift
Cmds.getUnerasableMeunList().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOUnerasableMeunListModel
}else {
// Failure
}
}
Kotlin
Cmds.getUnerasableMeunList().send {
if (it.error.code == 0) {
// Success
// it.res is IDOUnerasableMeunListModel
}else {
// Failure
}
}