toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adherenceReasoning = this.adherenceReasoning;
final isAdherent = this.isAdherent;
final point = this.point;
return {
'adherenceReasoning': ?adherenceReasoning,
'isAdherent': ?isAdherent,
'point': ?point,
};
}