Dart: Types of Comments
Types of comment
Single line Comments
Single line comments are very useful to describe quick snippets of code. Type // and type your comment above the code.
```dart
// Comments out this line!
print(hello);
```
Block Comments
But, what if we we want t...
blog.sideguide.dev1 min read