ProxyTInitOtpBody.fromJson constructor

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

Implementation

factory ProxyTInitOtpBody.fromJson(Map<String, dynamic> json) {
  final _otpType = json['otpType'] as String;
  final _contact = json['contact'] as String;
  return ProxyTInitOtpBody(
    otpType: _otpType,
    contact: _contact,
  );
}