Está com o Status Invertido, quando fica Verde ele envia como Não para o Sistema, quando está Branco ele envia como Sim para o Sistema.

This commit is contained in:
J. A. Messias 2024-11-08 10:33:44 -03:00
parent a22f1a57d0
commit 86665b4cab
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class PreferencesPageModel with ChangeNotifier {
onConfirm() async { onConfirm() async {
String content; String content;
String value = !isNotify ? 'N' : 'S'; String value = !isNotify ? 'S' : 'N';
await PhpGroup.changeNotifica await PhpGroup.changeNotifica
.call(notifica: value) .call(notifica: value)
.then((value) async { .then((value) async {