handleGetBackgroundColors method
Implementation
void handleGetBackgroundColors(int? id, Map<String, dynamic> params) {
// For now, return empty background colors
// This could be enhanced to actually compute background colors from the render tree
sendToFrontend(
id,
JSONEncodableMap({
'backgroundColors': [],
}));
}