toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
_json['id'] = id;
_json['type'] = type;
_json['rawId'] = rawId;
if (authenticatorAttachment != null) {
_json['authenticatorAttachment'] = authenticatorAttachment;
}
_json['response'] = response.toJson();
_json['clientExtensionResults'] = clientExtensionResults.toJson();
return _json;
}