chore(deps): upgrade Flutter Go and Android dependencies

This commit is contained in:
zarzet
2026-08-27 10:42:14 +07:00
parent 1a7c20111a
commit 4fa0ab860b
10 changed files with 149 additions and 84 deletions
+1 -2
View File
@@ -49,8 +49,7 @@ class _IconButtonTooltipVisitor extends RecursiveAstVisitor<void> {
if (node.constructorName.type.name.lexeme == 'IconButton') {
final hasTooltip = node.argumentList.arguments.any(
(argument) =>
argument is NamedExpression &&
argument.name.label.name == 'tooltip',
argument is NamedArgument && argument.name.lexeme == 'tooltip',
);
if (!hasTooltip) {
final line = lineInfo.getLocation(node.offset).lineNumber;