buildSlotRectCaches method

  1. @protected
dynamic buildSlotRectCaches(
  1. Iterable<BuildContext> list
)
inherited

Implementation

@protected
buildSlotRectCaches(Iterable<BuildContext> list) {
  // print('buildSlotRectCaches ${list.length}');
  _slots
    ..clear()
    ..addAll(list.map((context) => getRect(context)));
  // print('buildSlotRectCaches $_slots');
}