NiceAboutSection constructor

const NiceAboutSection({
  1. Key? key,
  2. required String appName,
  3. required String version,
  4. String? buildNumber,
  5. String? copyright,
  6. VoidCallback? onTerms,
  7. VoidCallback? onPrivacy,
  8. VoidCallback? onLicenses,
  9. VoidCallback? onFeedback,
  10. VoidCallback? onRate,
})

Implementation

const NiceAboutSection({
  super.key,
  required this.appName,
  required this.version,
  this.buildNumber,
  this.copyright,
  this.onTerms,
  this.onPrivacy,
  this.onLicenses,
  this.onFeedback,
  this.onRate,
  this.logo,
});