BackgroundTypePattern constructor

const BackgroundTypePattern({
  1. required Document document,
  2. required BackgroundFill fill,
  3. required int intensity,
  4. required bool isInverted,
  5. required bool isMoving,
})

Constructs a BackgroundTypePattern object.

Implementation

const BackgroundTypePattern({
  required this.document,
  required this.fill,
  required this.intensity,
  required this.isInverted,
  required this.isMoving,
});