DeveloperInfo constructor

DeveloperInfo({
  1. String? developerName,
  2. String? email,
  3. String? privacyPolicy,
  4. String? url,
})

Implementation

DeveloperInfo({
  this.developerName,
  this.email,
  this.privacyPolicy,
  this.url,
});