offset property

double offset

The current scroll offset of the group.

Implementation

double get offset {
  assert(
    _attachedControllers.isNotEmpty,
    'LinkedScrollControllerGroup does not have any scroll controllers '
    'attached.',
  );
  return _attachedControllers.first.offset;
}