AboutUsPage constructor

const AboutUsPage({
  1. Key? key,
  2. required String assetImage,
  3. required String fbFanPageUrl,
  4. required String fbFanPageId,
  5. String? instagramUsername,
  6. required String githubUrl,
  7. required String githubName,
  8. required String email,
  9. required String appLicense,
  10. List<Widget>? actions,
  11. String? applicationName,
  12. String? applicationVersion,
  13. Widget? applicationIcon,
  14. String? applicationLegalese,
})

Implementation

const AboutUsPage({
  super.key,
  required this.assetImage,
  required this.fbFanPageUrl,
  required this.fbFanPageId,
  this.instagramUsername,
  required this.githubUrl,
  required this.githubName,
  required this.email,
  required this.appLicense,
  this.actions,
  this.applicationName,
  this.applicationVersion,
  this.applicationIcon,
  this.applicationLegalese,
});