rootStyleToCss function

String rootStyleToCss(
  1. Map<String, Object?> style
)

Converts a style map into root-level CSS declarations.

Implementation

String rootStyleToCss(Map<String, Object?> style) {
  return style.entries
      .where(
        (entry) =>
            entry.value != null &&
            entry.key != '_cssText' &&
            entry.key != 'scrollbar-display',
      )
      .map((entry) => '${entry.key}: ${_rootCssValue(entry.key, entry.value)}')
      .join('; ');
}