/clean-code-dart

Clean Code concepts for Dart.

MIT LicenseMIT

clean-code-Flutter/Dart

Clean Code concepts for Flutter/Dart.

Table of Contents

  1. Introduction
  2. Naming/Variable
  3. Coding Patterns and catching bugs early
  4. Comments
  5. Formatting
  6. Error Handling
  7. SOLID
  8. Performance Best Practices
  9. Testing
  10. Packages And Plugin

Introduction

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


Clean code is the one that is easy to understand and most importantly easy to change. pic

Software engineering principles, from Robert C. Martin's book Clean Code, adapted for Dart.

Summary:

chart

To dig more into dart, you can check out dart official documentation too.