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

description

String getjustifyContent

Gets the value of "justify-content"

Implementation

String get justifyContent => getPropertyValue('justify-content');

setjustifyContent (String value)

Sets the value of "justify-content"

Implementation

set justifyContent(String value) {
  setProperty('justify-content', value, '');
}