mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:04:16 -04:00
Fixes trailing comma analyze error
This commit is contained in:
parent
fde8026253
commit
4fa55f0e0b
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user