hasLateSize method

bool hasLateSize(
  1. BoxConstraints constraints
)

Implementation

bool hasLateSize(BoxConstraints constraints) {
  if (options.bounds != null &&
      originalSize != null &&
      originalSize!.x == 0.0 &&
      constraints.maxWidth != 0.0) {
    return true;
  }
  return false;
}