v1RecoverUserIntent.fromJson constructor
Implementation
factory v1RecoverUserIntent.fromJson(Map<String, dynamic> json) {
final _authenticator = v1AuthenticatorParamsV2.fromJson(json['authenticator'] as Map<String, dynamic>);
final _userId = json['userId'] as String;
return v1RecoverUserIntent(
authenticator: _authenticator,
userId: _userId,
);
}