Subject constructor

Subject({
  1. String? commonName,
  2. String? countryCode,
  3. String? locality,
  4. String? organization,
  5. String? organizationalUnit,
  6. String? postalCode,
  7. String? province,
  8. String? streetAddress,
})

Implementation

Subject({
  this.commonName,
  this.countryCode,
  this.locality,
  this.organization,
  this.organizationalUnit,
  this.postalCode,
  this.province,
  this.streetAddress,
});