debugAssertDoesMeetConstraints method

  1. @override
void debugAssertDoesMeetConstraints()
override

Verify that the object's constraints are being met. Override this function in a subclass to verify that your state matches the constraints object. This function is only called when asserts are enabled (i.e. in debug mode) and only when needsLayout is false. If the constraints are not met, it should assert or throw an exception.

Implementation

@override
void debugAssertDoesMeetConstraints() { assert(false); }