squareOutline property

MarkerBuilder squareOutline
getter/setter pair

Builds a square outline border, 1/16th the width of the square.

Implementation

static MarkerBuilder squareOutline = (context, size, colour) => Container(
      width: size,
      height: size,
      decoration: BoxDecoration(
        border: Border.all(
          color: colour,
          width: size / 16,
        ),
      ),
    );