toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.token != null) {
json[r'token'] = this.token;
} else {
json[r'token'] = null;
}
json[r'tutor_profile'] = this.tutorProfile;
return json;
}