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