class GetAnalyticsDevicesParam { final String? spaceUuid; final String deviceType; final String? communityUuid; const GetAnalyticsDevicesParam({ required this.spaceUuid, required this.deviceType, required this.communityUuid, }); Map toJson() { return { 'deviceType': deviceType, if (spaceUuid != null) 'spaceUuid': spaceUuid, if (communityUuid != null) 'communityUuid': communityUuid, }; } }