isProduction top-level property

bool get isProduction

Check if this is a production (--release) build of the software.

Implementation

bool get isProduction {
  return const bool.fromEnvironment('dart.vm.product');
}