isAtLeast method

bool isAtLeast(
  1. double value
)

Returns true if the container width is greater than or equal to value.

Implementation

bool isAtLeast(double value) => width >= value;