v1RecoverUserResult.fromJson constructor

v1RecoverUserResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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