toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final commitmentName = this.commitmentName;
final commitmentPlan = this.commitmentPlan;
final previousCommitmentTerms = this.previousCommitmentTerms;
return {
'commitmentName': ?commitmentName,
'commitmentPlan': ?commitmentPlan,
'previousCommitmentTerms': ?previousCommitmentTerms,
};
}