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:
parent
fde8026253
commit
4fa55f0e0b
1 changed files with 5 additions and 2 deletions
|
@ -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…
Reference in a new issue