offset property Null safety

double offset

Implementation

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

  return _attachedControllers.last.offset;
}