toJson method
Implementation
Map<String, dynamic> toJson() => {
'name': name,
'family': family.name,
'description': description,
'supportedFields': List<String>.from(supportedFields),
'recommendedFields': List<String>.from(recommendedFields),
};