ProxyTInitOtpResponse.fromJson constructor

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

Implementation

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