sunLayers property

List<SunLayer> sunLayers

sunLayers = Images that are drawn at the sun's location at various rotations/blend modes

Implementation

List<SunLayer> get sunLayers => [
      SunLayer(
          image: "sun_1",
          mode: BlendMode.multiply,
          flipped: false,
          speed: -1),
      SunLayer(
          image: "sun_2", mode: BlendMode.plus, flipped: false, speed: 5),
      SunLayer(
          image: "sun_3", mode: BlendMode.plus, flipped: false, speed: -4),
      SunLayer(
          image: "sun_3", mode: BlendMode.multiply, flipped: true, speed: -3),
      SunLayer(
          image: "sun_4", mode: BlendMode.multiply, flipped: true, speed: 1),
    ];