shouldUpdate property

bool get shouldUpdate

Implementation

static bool get shouldUpdate {
  switch (current) {
    case EnvironmentType.prod:
      return true;
    case EnvironmentType.test:
      return false;
  }
}