toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final categoryId = this.categoryId;
final contactDetails = this.contactDetails;
final creationDateTime = this.creationDateTime;
final creditDetails = this.creditDetails;
final id = this.id;
final leadCharged = this.leadCharged;
final leadFeedbackSubmitted = this.leadFeedbackSubmitted;
final leadStatus = this.leadStatus;
final leadType = this.leadType;
final locale = this.locale;
final note = this.note;
final resourceName = this.resourceName;
final serviceId = this.serviceId;
return {
'categoryId': ?categoryId,
'contactDetails': ?contactDetails,
'creationDateTime': ?creationDateTime,
'creditDetails': ?creditDetails,
'id': ?id,
'leadCharged': ?leadCharged,
'leadFeedbackSubmitted': ?leadFeedbackSubmitted,
'leadStatus': ?leadStatus,
'leadType': ?leadType,
'locale': ?locale,
'note': ?note,
'resourceName': ?resourceName,
'serviceId': ?serviceId,
};
}