setInlineStyle method

  1. @override
void setInlineStyle(
  1. String property,
  2. String value
)
inherited

Implementation

@override
void setInlineStyle(String property, String value) {
  super.setInlineStyle(property, value);
  bool shouldRebuild = shouldElementRebuild(property, style.getPropertyValue(property), value);
  if (_state != null && shouldRebuild) {
    _state!.requestUpdateState();
  }
  styleDidUpdate(property, value);
}