env property

String env

Implementation

String get env {
  bool isDev = false;
  assert(isDev = true);

  return isDev ? 'dev' : 'live';
}