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