toJson method

Map<String, dynamic> toJson()

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,
  };
}