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