handleGetBackgroundColors method

void handleGetBackgroundColors(
  1. int? id,
  2. Map<String, dynamic> params
)

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': [],
      }));
}