resolveBackgroundImage static method

dynamic resolveBackgroundImage(
  1. String present,
  2. RenderStyle renderStyle,
  3. String property,
  4. WebFController controller,
  5. String? baseHref,
)

Implementation

static resolveBackgroundImage(
    String present, RenderStyle renderStyle, String property, WebFController controller, String? baseHref) {
  List<CSSFunctionalNotation> functions = CSSFunction.parseFunction(present);
  return CSSBackgroundImage(functions, renderStyle, controller, baseHref: baseHref);
}