Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 405 Bytes

dart.md

File metadata and controls

10 lines (6 loc) · 405 Bytes

Style Guide For Dart

Identifiers

Identifiers come in three flavors in Dart.

UpperCamelCase names capitalize the first letter of each word, including the first.

lowerCamelCase names capitalize the first letter of each word, except the first which is always lowercase, even if it’s an acronym.

lowercase_with_underscores use only lowercase letters, even for acronyms, and separate words with _.