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:
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
|
/// 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) {
|
||||||
|
|
Loading…
Reference in a new issue