Dart Syntax: Comments & How to write effectively
Comments
There are two type of comments
Single line comment
multi line comment
Single line comment
A single line comment is use double forward slash ('//').
// This is a single-line comment in Dart.
var x = 10; // Variable declaration
Multi line...
jeetbhalu.hashnode.dev1 min read