ShapePattern constructor

ShapePattern({@required String shapeName, int numberOfColumns: 10, int numberOfRows: 25, double angle: 0.0, double shapeMargins: 10.0, double shapeSize: 24.0, Color shapeColor: const Color(0xFF757575) })

Implementation

ShapePattern(
    {@required this.shapeName,
      this.numberOfColumns = 10,
      this.numberOfRows = 25,
      this.angle = 0.0,
      this.shapeMargins = 10.0,
      this.shapeSize = 24.0,

      ///Constant shade [600] for [Colors.grey]
      this.shapeColor = const Color(0xFF757575)});