T? tryGet<T>(String key, {bool temp = true}) { final value = temp ? _temporary[key] : _permanent[key]; return value is T ? value : null; }