What is more efficient way to use normal const in file and static const in a class file in dart?
const MARGIN_SMALL = 4.0;
and
class AppDimen {
const MARGIN_SMALL = 4.0;
}
What is more efficient way to use normal const in file and static const in a class file in dart?
const MARGIN_SMALL = 4.0;
and
class AppDimen {
const MARGIN_SMALL = 4.0;
}