fix analysis
This commit is contained in:
@@ -57,7 +57,7 @@ typedef AttachmentThumbnailBuilder = Widget Function(
|
|||||||
);
|
);
|
||||||
|
|
||||||
/// Builder function for building a mention tile
|
/// Builder function for building a mention tile
|
||||||
/// Use [MentionTile] for the default implementation
|
/// Use [UserMentionTile] for the default implementation
|
||||||
typedef MentionTileBuilder = Widget Function(
|
typedef MentionTileBuilder = Widget Function(
|
||||||
BuildContext context,
|
BuildContext context,
|
||||||
Member member,
|
Member member,
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ void main() {
|
|||||||
final thierry = User(id: 'thierry', name: 'Thierry');
|
final thierry = User(id: 'thierry', name: 'Thierry');
|
||||||
final users = [tommaso, thierry];
|
final users = [tommaso, thierry];
|
||||||
|
|
||||||
final a = users.search('Tom');
|
|
||||||
expect(users.search('Tom'), [tommaso]);
|
expect(users.search('Tom'), [tommaso]);
|
||||||
expect(users.search('Thier'), [thierry]);
|
expect(users.search('Thier'), [thierry]);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user