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