Skip to content

Files

Latest commit

 

History

History
19 lines (13 loc) · 289 Bytes

avoid_print.md

File metadata and controls

19 lines (13 loc) · 289 Bytes

Pattern: Use of print

Issue: -

Description

DO avoid print calls in production code.

Example of incorrect code:

void f(int x) {
 print('debug: $x');
 ...
}

Further Reading