offset property

double get offset

The current scroll offset of the group.

Implementation

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