AboutListTile constructor

const AboutListTile({Key key, Widget icon: const Icon(null), Widget child, String applicationName, String applicationVersion, Widget applicationIcon, String applicationLegalese, List<Widget> aboutBoxChildren })

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({
  Key key,
  this.icon = const Icon(null),
  this.child,
  this.applicationName,
  this.applicationVersion,
  this.applicationIcon,
  this.applicationLegalese,
  this.aboutBoxChildren
}) : super(key: key);