createElementOptions method

JsElementsCreateOptions createElementOptions()

Implementation

js.JsElementsCreateOptions createElementOptions() {
  final textColor = widget.style?.textColor;
  return js.JsElementsCreateOptions(
    appearance: js.jsify(
      js.ElementAppearance(
        theme: js.ElementTheme.stripe,
        variables: {
          if (textColor != null) 'colorText': colorToCssString(textColor),
        },
      ).toJson(),
    ) as js.JsElementAppearance,
  );
}