converted GetOccupancyParam.toJson to an expression method.

This commit is contained in:
Faris Armoush
2025-05-21 10:59:04 +03:00
parent ecf588cfcb
commit e0ad7855d3

View File

@ -7,9 +7,5 @@ class GetOccupancyParam {
required this.spaceUuid,
});
Map<String, dynamic> toJson() {
return {
'monthDate': monthDate,
};
}
Map<String, dynamic> toJson() => {'monthDate': monthDate};
}