phase3: precise nullable-condition fixes (if(x)->if(x==true), analyzer-driven). 399->379

This commit is contained in:
2026-07-26 10:46:26 +08:00
parent 97e4908126
commit 3ed58e1596
6 changed files with 20 additions and 20 deletions

View File

@@ -508,7 +508,7 @@ class ShopState extends State<Shop>
stack.children.addAll(children);
if (!_business.isPublic) {
if (_business.isPublic != true) {
stack.children.add(
Positioned(
top: 0,
@@ -1821,7 +1821,7 @@ class ShopState extends State<Shop>
return;
}
checkCloseFlag = true;
if (business.forceClose) {
if (business.forceClose == true) {
showDialog(
context: context,
builder: (BuildContext context) {