Fix missing parent impl for some methods

This commit is contained in:
Ming Ming 2021-08-10 18:11:28 +08:00
parent 88ab3113f6
commit 52b063211f

View file

@ -147,10 +147,10 @@ mixin AlbumBrowserMixin<T extends StatefulWidget>
/// Validates the pending modifications
@protected
bool validateEditMode();
bool validateEditMode() => true;
@protected
void doneEditMode();
void doneEditMode() {}
/// Return a new album with the edits
@protected