toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'name': name.toJson(),
'origin': origin.toJson(),
'style': style.toJson(),
'active': active,
if (styleSheetId != null) 'styleSheetId': styleSheetId!.toJson(),
};
}