List<dynamic>? listOrNull(String key) { final value = this[key]; return value is List ? value : null; }