chore(ui): ignore positional_boolean analysis.

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2023-05-16 17:08:03 +05:30
committed by xsahil03x
parent 97238930d0
commit a0e6c98c83
2 changed files with 2 additions and 0 deletions
@@ -5,6 +5,7 @@ import 'package:flutter/material.dart';
/// {@endtemplate} /// {@endtemplate}
typedef ReactionIconBuilder = Widget Function( typedef ReactionIconBuilder = Widget Function(
BuildContext context, BuildContext context,
// ignore: avoid_positional_boolean_parameters
bool isHighlighted, bool isHighlighted,
double iconSize, double iconSize,
); );
@@ -348,6 +348,7 @@ typedef KeyEventPredicate = bool Function(FocusNode, KeyEvent);
/// {@template userItemBuilder} /// {@template userItemBuilder}
/// Builder used to create a custom [ListUserItem] from a [User] /// Builder used to create a custom [ListUserItem] from a [User]
/// {@endtemplate} /// {@endtemplate}
// ignore: avoid_positional_boolean_parameters
typedef UserItemBuilder = Widget Function(BuildContext, User, bool); typedef UserItemBuilder = Widget Function(BuildContext, User, bool);
/// The action to perform when the "scroll to bottom" button is pressed /// The action to perform when the "scroll to bottom" button is pressed