AboutScreen constructor

const AboutScreen({
  1. Key? key,
  2. required String applicationName,
  3. String? applicationVersion,
  4. String? applicationLegalese,
  5. Widget? applicationIcon,
})

Implementation

const AboutScreen({
  Key? key,
  required this.applicationName,
  this.applicationVersion,
  this.applicationLegalese,
  this.applicationIcon,
}) : super(key: key);