Use super

This commit is contained in:
Neeraj Gupta
2024-11-19 10:57:40 +05:30
parent 179e586671
commit 14adea59bf

View File

@@ -9,11 +9,11 @@ class PersonRowItem extends StatelessWidget {
final VoidCallback onTap;
const PersonRowItem({
Key? key,
super.key,
required this.person,
required this.personFile,
required this.onTap,
}) : super(key: key);
});
@override
Widget build(BuildContext context) {