flexWrap property - CssStyleDeclarationBase class - dart:html library (original) (raw)

description

String getflexWrap

Gets the value of "flex-wrap"

Implementation

String get flexWrap => getPropertyValue('flex-wrap');

setflexWrap (String value)

Sets the value of "flex-wrap"

Implementation

set flexWrap(String value) {
  setProperty('flex-wrap', value, '');
}