DeveloperDetails constructor

DeveloperDetails({
  1. String? address,
  2. String? contactEmail,
  3. String? developerName,
  4. String? phoneNumber,
  5. String? website,
})

Implementation

DeveloperDetails({
  this.address,
  this.contactEmail,
  this.developerName,
  this.phoneNumber,
  this.website,
});