ScrollOffsetListener.create constructor

ScrollOffsetListener.create({
  1. bool recordProgrammaticScrolls = true,
})

Construct a ScrollOffsetListener.

Set recordProgrammaticScrolls to false to prevent reporting of programmatic scrolls.

Implementation

factory ScrollOffsetListener.create(
        {bool recordProgrammaticScrolls = true}) =>
    ScrollOffsetNotifier(
        recordProgrammaticScrolls: recordProgrammaticScrolls);