toJson method
Implementation
Map<String, dynamic> toJson() => {
'isEnabled': isEnabled,
if (title != null) 'title': title,
if (image != null) 'image': image,
'style': style.name,
'onClickEvent': onClickEvent.name,
};