static bool? contain(String? content, String key) { if (!isEmpty(content)) { return content!.contains(key); } else { return null; } }