blob: 3e0bee6abbe12bb740660e8c6298051986b8d172 [file] [log] [blame]
import 'base_class.dart';
class BoxConstraints extends Constraints {
/// Creates box constraints with the given constraints.
const BoxConstraints();
/// Overrides the method in the superclass.
@override
bool debugAssertIsValid() {
return false;
}
}