Marked as '@immutable'

This class (or a class that this class inherits from) is marked as '@immutable', but one or more of its instance fields aren't final: WorkoutForm._plan
This commit is contained in:
Marvin M
2021-10-07 19:58:40 +02:00
parent c2e881c139
commit 923b44ba97
9 changed files with 28 additions and 32 deletions

View File

@@ -28,7 +28,7 @@ import 'package:wger/models/gallery/image.dart' as gallery;
import 'package:wger/providers/gallery.dart';
class ImageForm extends StatefulWidget {
late gallery.Image _image;
late final gallery.Image _image;
ImageForm([gallery.Image? image]) {
_image = image ?? gallery.Image.emtpy();