hw property

Creates adapt BoxConstraints using h-w SizeExtension.

Implementation

BoxConstraints get hw => this.copyWith(
      maxHeight: maxHeight.h,
      maxWidth: maxWidth.w,
      minHeight: minHeight.h,
      minWidth: minWidth.w,
    );