ProxyTInitOtpV2Response.fromJson constructor

ProxyTInitOtpV2Response.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}