void addColorStop(
num offset,
String color
)

Adds a color stop to this gradient at the offset.

The offset can range between 0.0 and 1.0.

See also:

Source

/**
 * Adds a color stop to this gradient at the offset.
 *
 * The [offset] can range between 0.0 and 1.0.
 *
 * See also:
 *
 * * [Multiple Color Stops](https://developer.mozilla.org/en-US/docs/CSS/linear-gradient#Gradient_with_multiple_color_stops) from MDN.
 */
@DomName('CanvasGradient.addColorStop')
@DocsEditable()
void addColorStop(num offset, String color) => _blink.BlinkCanvasGradient.instance.addColorStop_Callback_2_(unwrap_jso(this), offset, color);