resolveBackgroundImage static method

dynamic resolveBackgroundImage(
  1. String present,
  2. RenderStyle renderStyle,
  3. String property,
  4. KrakenController controller,
)

Implementation

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