static bool canParse(Object? obj) { if (obj is! Map<String, dynamic>) { return false; } return true; }