loadParallaxImage method

Future<ParallaxImage> loadParallaxImage(
  1. String path, {
  2. ImageRepeat repeat = ImageRepeat.repeatX,
  3. Alignment alignment = Alignment.bottomLeft,
  4. LayerFill fill = LayerFill.height,
  5. FilterQuality? filterQuality,
})

Implementation

Future<ParallaxImage> loadParallaxImage(
  String path, {
  ImageRepeat repeat = ImageRepeat.repeatX,
  Alignment alignment = Alignment.bottomLeft,
  LayerFill fill = LayerFill.height,
  FilterQuality? filterQuality,
}) {
  return ParallaxImage.load(
    path,
    repeat: repeat,
    alignment: alignment,
    fill: fill,
    images: images,
    filterQuality: filterQuality,
  );
}