Flutter Static Analysis, Linting

Static analysis allows you to find problems before executing a single line of code. There are two major groups of static analysis, linting, and code-cycle analysis. In this article, I will cover using the dart analyzer to lint analyze flutter code.
Background
The problem is while Google does an excellent job at giving you an introduction to widgets; it’s not the techniques…