ProxyTInitOtpV2Response.fromJson constructor
Implementation
factory ProxyTInitOtpV2Response.fromJson(Map<String, dynamic> json) {
final _otpId = json['otpId'] as String;
final _otpEncryptionTargetBundle =
json['otpEncryptionTargetBundle'] as String;
return ProxyTInitOtpV2Response(
otpId: _otpId,
otpEncryptionTargetBundle: _otpEncryptionTargetBundle,
);
}