toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final goToAction = this.goToAction;
final goToSectionId = this.goToSectionId;
final image = this.image;
final isOther = this.isOther;
final value = this.value;
return {
'goToAction': ?goToAction,
'goToSectionId': ?goToSectionId,
'image': ?image,
'isOther': ?isOther,
'value': ?value,
};
}