1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-06 03:46:47 +01: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 /// The current value of the indicator
final double value; final double value;
const MemoryProgressIndicator( const MemoryProgressIndicator({
{super.key, required this.ticks, required this.value}); super.key,
required this.ticks,
required this.value,
});
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {