Get the red dot reminder switch
Function table: None
Example
Swift
Cmds.getUnreadAppRe minder().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOCmdGetResponseModel
}else {
// Failure
}
}
Kotlin
Cmds.getUnreadAppReminder().send {
if (it.error.code == 0) {
// Success
// it.res is IDOCmdGetResponseModel
}else {
// Failure
}
}