BackgroundTypePattern constructor

BackgroundTypePattern({
  1. BackgroundFill? fill,
  2. required int intensity,
  3. required bool isInverted,
  4. required bool isMoving,
})

Implementation

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