Implemented toJson method in DuplicateSpaceParam.

This commit is contained in:
Faris Armoush
2025-07-23 09:58:15 +03:00
parent 71f0da9299
commit c59d2b7fd6

View File

@ -10,4 +10,8 @@ class DuplicateSpaceParam {
required this.newSpaceName,
required this.newSpaceIcon,
});
Map<String, dynamic> toJson() => {
'spaceName': newSpaceName,
};
}