isProduction top-level property
Check if this is a production (--release) build of the software.
Implementation
bool get isProduction {
return const bool.fromEnvironment('dart.vm.product');
}
Check if this is a production (--release) build of the software.
bool get isProduction {
return const bool.fromEnvironment('dart.vm.product');
}