ScrollDetailProvider<M extends ObserveModel> constructor

const ScrollDetailProvider<M extends ObserveModel>({
  1. Key? key,
  2. required Widget child,
  3. bool lazy = false,
  4. dynamic onObserve()?,
  5. ExposureReferee? exposureReferee,
  6. BuildContext? sliverGridContext()?,
})

Implementation

const ScrollDetailProvider({
  Key? key,
  required this.child,
  this.lazy = false,
  this.onObserve,
  this.exposureReferee,
  this.sliverGridContext
}) : super(key: key);