CsrConfig constructor

CsrConfig({
  1. String? commonName,
  2. String? serialNumber,
  3. String? organizationIdentifier,
  4. String? organizationUnitName,
  5. String? organizationName,
  6. String? countryName,
  7. String? invoiceType,
  8. String? locationAddress,
  9. String? industryBusinessCategory,
})

Constructs a CsrConfig object with optional named parameters.

Implementation

CsrConfig({
  this.commonName,
  this.serialNumber,
  this.organizationIdentifier,
  this.organizationUnitName,
  this.organizationName,
  this.countryName,
  this.invoiceType,
  this.locationAddress,
  this.industryBusinessCategory,
}) {
  _createCsrConfigFile();
}