Small change

This commit is contained in:
Juan Gilsanz Polo 2024-01-25 00:55:12 +01:00
parent 2d991ce9df
commit 5b2523158b

View file

@ -7,11 +7,11 @@ class CustomPieChart extends StatelessWidget {
final Duration? animationDuration;
const CustomPieChart({
Key? key,
super.key,
required this.data,
required this.colors,
this.animationDuration = const Duration(milliseconds: 800),
}) : super(key: key);
this.animationDuration = const Duration(milliseconds: 800),
});
@override
Widget build(BuildContext context) {