v1RecoverUserIntent.fromJson constructor

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

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,
  );
}