Search
▪️

Appendix One: Building Open Source with Dart

Dart Standard Library
dart:io
dart:async
dart:math
dart:core
dart:collection
dart:mirrors
dart:isolate
var → The variable will be reassigned in the future
final → The variable will never be reassigned
const on variable → Compile time constant variable, can be used to define other constant values
const on value → Compile time constant value, it will never change in any way. Different value type work differently with const
생성된 클래스를 const로 쓰고 싶은 경우, 클래스 생성자 선언을 const로 해줘야 한다.