Pattern: Use of print
Issue: -
DO avoid print
calls in production code.
Example of incorrect code:
void f(int x) {
print('debug: $x');
...
}
Pattern: Use of print
Issue: -
DO avoid print
calls in production code.
Example of incorrect code:
void f(int x) {
print('debug: $x');
...
}