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