ImageLayer constructor

ImageLayer({
  1. required String image,
  2. double parallaxX = 1,
  3. double parallaxY = 1,
})

Implementation

ImageLayer({
  required this.image,
  this.parallaxX = 1,
  this.parallaxY = 1,
});