invokeLayoutRemove method

void invokeLayoutRemove(
  1. Object? slot
)

Implementation

void invokeLayoutRemove(Object? slot) {
  if (element == null) return;
  renderer?.invokeLayoutCallback((constraints) {
    removeSlotElement(slot);
  });
}