toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'status'] = this.status;
json[r'strategy'] = this.strategy;
if (this.attempts != null) {
json[r'attempts'] = this.attempts;
} else {
json[r'attempts'] = null;
}
if (this.expireAt != null) {
json[r'expire_at'] = this.expireAt;
} else {
json[r'expire_at'] = null;
}
if (this.verifiedAtClient != null) {
json[r'verified_at_client'] = this.verifiedAtClient;
} else {
json[r'verified_at_client'] = null;
}
return json;
}