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