toCss method

String toCss()

Converts this stop to a CSS gradient stop.

Implementation

String toCss() {
  final colorValue = cssValue(color);
  if (position == null) return colorValue;
  return '$colorValue ${_gradientPositionValue(position)}';
}