BackgroundTypePattern constructor

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

A PNG or TGV (gzipped subset of SVG with MIME type "application/x-tgwallpattern") pattern to be combined with the background fill chosen by the user

Implementation

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