SizedBoxResponsive.fromSize constructor

SizedBoxResponsive.fromSize({
  1. Key? key,
  2. Widget? child,
  3. Size? size,
})

Creates a box with the specified size.

Implementation

SizedBoxResponsive.fromSize({Key? key, Widget? child, Size? size})
    : super(
        key: key,
        child: child,
        width: size?.width == null ? null : size?.width.w.toDouble(),
        height: size?.height == null ? null : size?.height.h.toDouble(),
      );