Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

flutter debugprint

void main() {
    bool isInRelease = true;

    assert(() {
      isInRelease = false;
      return true;
    }());

    if (isInRelease) {
      debugPrint = (String? message, {int? wrapWidth}) {};
    }
}
 
PREVIOUS NEXT
Tagged: #flutter #debugprint
ADD COMMENT
Topic
Name
4+5 =