Subject constructor

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

Implementation

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