WhiteBishop constructor

WhiteBishop({
  1. double size = 45.0,
  2. dynamic fillColor = Colors.white,
  3. dynamic strokeColor = Colors.black,
})

size (double) : default to 45.0

Implementation

WhiteBishop(
    {double size = 45.0,
    this.fillColor = Colors.white,
    this.strokeColor = Colors.black})
    : super(
        baseImageSize: 45.0,
        requestSize: size,
        painter: VectorImagePainter(
          vectorDefinition: <VectorDrawableElement>[
            VectorImageGroup(
              children: <VectorDrawableElement>[
                VectorImageGroup(
                  children: <VectorDrawableElement>[
                    VectorImagePathDefinition(
                      path:
                          "M 9,36 C 12.39,35.03 19.11,36.43 22.5,34 C 25.89,36.43 "
                          "32.61,35.03 36,36 C 36,36 37.65,36.54 39,38 C 38.32,38.97 "
                          "37.35,38.99 36,38.5 C 32.61,37.53 25.89,38.96 22.5,37.5 C "
                          "19.11,38.96 12.39,37.53 9,38.5 C 7.646,38.99 6.677,38.97 6,38"
                          " C 7.354,36.06 9,36 9,36 z",
                      drawingParameters: DrawingParameters(),
                    ),
                    VectorImagePathDefinition(
                      path:
                          "M 15,32 C 17.5,34.5 27.5,34.5 30,32 C 30.5,30.5 30,30 30,30"
                          " C 30,27.5 27.5,26 27.5,26 C 33,24.5 33.5,14.5 22.5,10.5 C"
                          " 11.5,14.5 12,24.5 17.5,26 C 17.5,26 15,27.5 15,30 C 15,30"
                          " 14.5,30.5 15,32 z",
                      drawingParameters: DrawingParameters(),
                    ),
                    VectorImagePathDefinition(
                      path:
                          "M 25 8 A 2.5 2.5 0 1 1  20,8 A 2.5 2.5 0 1 1  25 8 z",
                      drawingParameters: DrawingParameters(),
                    )
                  ],
                  drawingParameters: DrawingParameters(
                    fillColor: fillColor,
                    strokeColor: strokeColor,
                    strokeLineCap: StrokeCap.butt,
                  ),
                ),
                VectorImagePathDefinition(
                  path:
                      "M 17.5,26 L 27.5,26 M 15,30 L 30,30 M 22.5,15.5 L 22.5,20.5 M 20,18 L 25,18",
                  drawingParameters: DrawingParameters(
                    fillColor: null,
                    strokeColor: strokeColor,
                    strokeLineJoin: StrokeJoin.miter,
                  ),
                )
              ],
              drawingParameters: DrawingParameters(
                fillColor: null,
                strokeColor: strokeColor,
                strokeWidth: 1.5,
                strokeLineCap: StrokeCap.round,
                strokeLineJoin: StrokeJoin.round,
                strokeLineMiterLimit: 4.0,
              ),
            )
          ],
        ),
      );