hasSize function

SizeAssert hasSize(
  1. double width,
  2. double height
)

Returns a SizeAssert with the given size infos.

Implementation

SizeAssert hasSize(double width, double height) =>
    SizeAssert(width: width, height: height);