ParalaxContainer constructor

ParalaxContainer({
  1. Key? key,
  2. required String? imageUrl,
  3. double? aspectRatio,
  4. double? radius,
  5. ParalaxType? type = ParalaxType.ASSETS,
  6. Widget? widgets = null,
})

Implementation

ParalaxContainer({
  Key? key,
  required this.imageUrl,
  this.aspectRatio,
  this.radius,
  this.type = ParalaxType.ASSETS,
  this.widgets = null,
}) : super(key: key);