AboutListTile constructor

const AboutListTile(
  1. {Key? key,
  2. Widget? icon,
  3. Widget? child,
  4. String? applicationName,
  5. String? applicationVersion,
  6. Widget? applicationIcon,
  7. String? applicationLegalese,
  8. List<Widget>? aboutBoxChildren,
  9. bool? dense}
)

Creates a list tile for showing an about box.

The arguments are all optional. The application name, if omitted, will be derived from the nearest Title widget. The version, icon, and legalese values default to the empty string.

Implementation

const AboutListTile({
  super.key,
  this.icon,
  this.child,
  this.applicationName,
  this.applicationVersion,
  this.applicationIcon,
  this.applicationLegalese,
  this.aboutBoxChildren,
  this.dense,
});