fullFillInlineStyle method

void fullFillInlineStyle(
  1. Map<String, String> inlineStyle
)

Implementation

void fullFillInlineStyle(Map<String, String> inlineStyle) {
  inlineStyle.forEach((key, value) {
    _webFElement!.setInlineStyle(key, value);
  });
}