GraphicsCommandStrokeColor strokeColor(int color, [ num width = 1.0, JointStyle jointStyle = JointStyle.MITER, CapsStyle capsStyle = CapsStyle.NONE ])

Apply a stroke color to the previously drawn vector object.

Source

GraphicsCommandStrokeColor strokeColor(int color, [
    num width = 1.0,
    JointStyle jointStyle = JointStyle.MITER,
    CapsStyle capsStyle = CapsStyle.NONE]) {

  var command = new GraphicsCommandStrokeColor(color, width, jointStyle, capsStyle);
  this.addCommand(command);
  return command;
}