canUseGetX property

bool get canUseGetX

Check if GetX can be used safely on current platform

Implementation

static bool get canUseGetX {
  // GetX might have issues with hot reload on web in development
  // but works fine in production
  return true; // Currently allowing GetX on all platforms
}