BaseScrollDetailProvider constructor

const BaseScrollDetailProvider({
  1. Key? key,
  2. Widget? child,
  3. Widget notificationChildBuilder()?,
  4. bool lazy = false,
})

Implementation

const BaseScrollDetailProvider({
  Key? key,
  this.child,
  this.notificationChildBuilder,
  this.lazy = false,
}) : super(key: key);