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