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,
  6. String? package,
})

Implementation

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