toCss method

String toCss()

Converts this shorthand to a CSS flex value.

Implementation

String toCss() {
  return [
    cssValue(grow, unitlessNumber: true),
    cssValue(shrink, unitlessNumber: true),
    cssValue(basis),
  ].join(' ');
}