onResizeB method
Implementation
onResizeB(DragUpdateDetails details)
{
if (widget.model.resizeable == false) return;
if (((height ?? 0) + details.delta.dy) < minimumSize) return;
setState(()
{
height = (height ?? 0) + details.delta.dy;
lastHeight = height;
});
}