emptyCells property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getemptyCells

override

Gets the value of "empty-cells"

Implementation

String get emptyCells => this._emptyCells;

setemptyCells (String? value)

override

Sets the value of "empty-cells"

Implementation

set emptyCells(String? value) {
  _emptyCells = value == null ? '' : value;
}