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

description

String getflexGrow

Gets the value of "flex-grow"

Implementation

String get flexGrow => getPropertyValue('flex-grow');

setflexGrow (String value)

Sets the value of "flex-grow"

Implementation

set flexGrow(String value) {
  setProperty('flex-grow', value, '');
}