JeaHorizontalScrollView constructor

JeaHorizontalScrollView({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding,
  4. bool? primary,
  5. ScrollPhysics? physics,
  6. ScrollController? controller,
  7. String? restorationId,
})

Implementation

JeaHorizontalScrollView({
  super.key,
  required this.child,
  this.padding,
  this.primary,
  this.physics,
  this.controller,
  this.restorationId,
});