Skip to content

Commit 29d28e6

Browse files
committed
added missing trailing comma
1 parent e29bcfc commit 29d28e6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/get_it.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,8 +492,10 @@ abstract class GetIt {
492492
});
493493

494494
/// find the first registration that matches the type [T]/[instanceName] or the [instance]
495-
ObjectRegistration? findFirstObjectRegistration<T extends Object>(
496-
{Object? instance, String? instanceName});
495+
ObjectRegistration? findFirstObjectRegistration<T extends Object>({
496+
Object? instance,
497+
String? instanceName,
498+
});
497499

498500
/// Tests if an [instance] of an object or a Type ([T] or [type]) or a name [instanceName]
499501
/// is registered inside GetIt

0 commit comments

Comments
 (0)