v1RecoverUserResult.fromJson constructor
Implementation
factory v1RecoverUserResult.fromJson(Map<String, dynamic> json) {
final _authenticatorId = (json['authenticatorId'] as List).map((e) => e as String).toList();
return v1RecoverUserResult(
authenticatorId: _authenticatorId,
);
}