loadParallaxLayer method

Future<ParallaxLayer> loadParallaxLayer(
  1. ParallaxData data, {
  2. ImageRepeat repeat = ImageRepeat.repeatX,
  3. Alignment alignment = Alignment.bottomLeft,
  4. LayerFill fill = LayerFill.height,
  5. Vector2? velocityMultiplier,
  6. FilterQuality? filterQuality,
})

Implementation

Future<ParallaxLayer> loadParallaxLayer(
  ParallaxData data, {
  ImageRepeat repeat = ImageRepeat.repeatX,
  Alignment alignment = Alignment.bottomLeft,
  LayerFill fill = LayerFill.height,
  Vector2? velocityMultiplier,
  FilterQuality? filterQuality,
}) {
  return ParallaxLayer.load(
    data,
    velocityMultiplier: velocityMultiplier,
    repeat: repeat,
    alignment: alignment,
    fill: fill,
    images: images,
    filterQuality: filterQuality,
  );
}