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

@@ -375,7 +375,7 @@ class MobileViewTicketState extends State<MobileViewTicket> {
);
}
if (ticket.isClosed) {
if (ticket.isClosed == true) {
view.children.add(
Container(
padding: EdgeInsets.symmetric(horizontal: 20.0, vertical: 20.0),