1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 08:31:59 +00:00

Fixes trailing comma analyze error

This commit is contained in:
Marty Fuhry 2024-02-04 13:33:21 -05:00
parent fde8026253
commit 4fa55f0e0b
No known key found for this signature in database
GPG key ID: E2AB6392D894D900

View file

@ -7,8 +7,11 @@ class MemoryProgressIndicator extends StatelessWidget {
/// The current value of the indicator
final double value;
const MemoryProgressIndicator(
{super.key, required this.ticks, required this.value});
const MemoryProgressIndicator({
super.key,
required this.ticks,
required this.value,
});
@override
Widget build(BuildContext context) {