Map<String, dynamic> toJson() { final result = <String, dynamic>{'name': name}; if (weight != null) { result['weight'] = weight; } return result; }