Dart: Constant Constructor
Define a Constant Constructor and make sure that all instance variable are final.
Syntax:
class Display{
final int x;
const Display(this.x, ...);
Basically, Constant Constructor have no body.
Example:
Here is the example using Constant Const...
jinali.hashnode.dev1 min read