carapacik_lints 1.0.6
carapacik_lints: ^1.0.6 copied to clipboard
The most necessary lints for Flutter to encourage good coding practices.
example/lib/main.dart
void main() {
const String hello = 'Hello';
final word = "World";
print('$hello' + word);
}