Sign in
dart
/
dartdoc.git
/
a0cc2dc304f1a3368b12cd0492c5b8acc2f70f52
/
.
/
testing
/
test_package
/
lib
/
override_class.dart
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
;
}
}