toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bookingAppointmentTimestamp = this.bookingAppointmentTimestamp;
final consumerEmail = this.consumerEmail;
final consumerPhoneNumber = this.consumerPhoneNumber;
final customerName = this.customerName;
final jobType = this.jobType;
return {
'bookingAppointmentTimestamp': ?bookingAppointmentTimestamp,
'consumerEmail': ?consumerEmail,
'consumerPhoneNumber': ?consumerPhoneNumber,
'customerName': ?customerName,
'jobType': ?jobType,
};
}