setTextBackgroundColor method

void setTextBackgroundColor(
  1. String hexCode
)

Implementation

void setTextBackgroundColor(String hexCode) {
  _controller?.evaluateJavascript(source: 'javascript:RE.prepareInsert();');
  _controller?.evaluateJavascript(
      source: "javascript:RE.setTextBackgroundColor('$hexCode');");
}