toString method
A string representation of this object.
Some classes have a default textual representation,
often paired with a static parse function (like int.parse).
These classes will provide the textual representation as
their string representation.
Other classes have no meaningful textual representation
that a program will care about.
Such classes will typically override toString to provide
useful information when inspecting the object,
mainly for debugging or logging.
Implementation
@override
String toString() => 'TutorBooking[id=$id, tutor=$tutor, customer=$customer, tutorFeedback=$tutorFeedback, customerFeedback=$customerFeedback, chat=$chat, cancellationPeriodHours=$cancellationPeriodHours, hasCancellationPenalty=$hasCancellationPenalty, paymentHoldsAt=$paymentHoldsAt, paymentAmountInCents=$paymentAmountInCents, feedbackId=$feedbackId, subject=$subject, created=$created, modified=$modified, deletedAt=$deletedAt, isTutorPaid=$isTutorPaid, isAcceptedByCustomer=$isAcceptedByCustomer, isAcceptedByTutor=$isAcceptedByTutor, isRejectedByCustomer=$isRejectedByCustomer, isRejectedByTutor=$isRejectedByTutor, location=$location, acceptanceChangedAt=$acceptanceChangedAt, cancelledAt=$cancelledAt, cancelledByCustomer=$cancelledByCustomer, confirmedAt=$confirmedAt, confirmedStatus=$confirmedStatus, customerFeedbackStatus=$customerFeedbackStatus, customerFeedbackNotes=$customerFeedbackNotes, customerFeedbackCreatedAt=$customerFeedbackCreatedAt, customerFeedbackRating=$customerFeedbackRating, customerFeedbackExcellent=$customerFeedbackExcellent, tutorFeedbackNotes=$tutorFeedbackNotes, tutorFeedbackCreatedAt=$tutorFeedbackCreatedAt, tutorFeedbackRating=$tutorFeedbackRating, showCustomerFeedbackOnSite=$showCustomerFeedbackOnSite, startTime=$startTime, endTime=$endTime, customerToken=$customerToken, tutorToken=$tutorToken, feedbackRequired=$feedbackRequired, isTrialCall=$isTrialCall, finishedNotificationsSent=$finishedNotificationsSent, reconfirmingNotificationsSent=$reconfirmingNotificationsSent, cancelReason=$cancelReason, isCustomerRead=$isCustomerRead, isTutorRead=$isTutorRead, rescheduleCountByCustomer=$rescheduleCountByCustomer, rescheduleCountByTutor=$rescheduleCountByTutor, invitation=$invitation, cancelledBy=$cancelledBy, zoomMeeting=$zoomMeeting]';