class Artist { String _id; String _name; Artist(this._id, this._name); String get id => _id; String get name => _name; }