factory Project.fromJson(Map<String, dynamic> json) { return Project( id: json['id'] ?? '', name: json['name'] ?? '', type: json['type'], ); }