aku_new_community_manager/lib/utils/dev_util.dart

8 lines
131 B

class DevUtil {
static bool get isDev => _isDev;
static setDev(bool state) => _isDev = state;
static bool _isDev = true;
}