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