offset property

  1. @override
LayoutOffset get offset
override

Throws an exception - offset is not supported in dry layout.

Dry layout operations don't set positions, so accessing offset is not meaningful.

Implementation

@override
LayoutOffset get offset {
  throw Exception('offset is not supported in dry delegate');
}