mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
Fix constructor parameter order in CreateSubSpaceDialog
This commit is contained in:
@ -23,14 +23,14 @@ class CreateSubSpaceDialog extends StatelessWidget {
|
|||||||
final void Function(List<SubspaceModel>?)? onSave;
|
final void Function(List<SubspaceModel>?)? onSave;
|
||||||
|
|
||||||
const CreateSubSpaceDialog({
|
const CreateSubSpaceDialog({
|
||||||
super.key,
|
|
||||||
required this.isEdit,
|
required this.isEdit,
|
||||||
required this.dialogTitle,
|
required this.dialogTitle,
|
||||||
this.existingSubSpaces,
|
|
||||||
required this.spaceName,
|
required this.spaceName,
|
||||||
required this.spaceTags,
|
required this.spaceTags,
|
||||||
required this.products,
|
required this.products,
|
||||||
required this.onSave,
|
required this.onSave,
|
||||||
|
this.existingSubSpaces,
|
||||||
|
super.key,
|
||||||
});
|
});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
Reference in New Issue
Block a user