rowGap property

  1. @override
CSSLengthValue get rowGap
override

Implementation

@override
CSSLengthValue get rowGap => _rowGap ?? CSSLengthValue.normal;
set rowGap (CSSLengthValue? value)

Implementation

set rowGap(CSSLengthValue? value) {
  // Negative value is invalid.
  if ((value != null && ((value.value != null && value.value! < 0))) || _rowGap == value) {
    return;
  }
  _rowGap = value;
  if (isSelfRenderFlexLayout() || isSelfRenderGridLayout()) {
    markNeedsLayout();
  }
}