bool hasKey(String key) { bool checker = false; this.forEach((_key, value) { if (key == _key) checker = true; }); return checker; }