UpdateKycRequest constructor

UpdateKycRequest({
  1. String? country,
  2. String? address,
  3. String? phoneNumber,
  4. String? businessInfo,
  5. String? license,
  6. String? kycId,
  7. String? kycUrl,
})

Implementation

factory UpdateKycRequest({
  $core.String? country,
  $core.String? address,
  $core.String? phoneNumber,
  $core.String? businessInfo,
  $core.String? license,
  $core.String? kycId,
  $core.String? kycUrl,
}) {
  final $result = create();
  if (country != null) {
    $result.country = country;
  }
  if (address != null) {
    $result.address = address;
  }
  if (phoneNumber != null) {
    $result.phoneNumber = phoneNumber;
  }
  if (businessInfo != null) {
    $result.businessInfo = businessInfo;
  }
  if (license != null) {
    $result.license = license;
  }
  if (kycId != null) {
    $result.kycId = kycId;
  }
  if (kycUrl != null) {
    $result.kycUrl = kycUrl;
  }
  return $result;
}