AboutListTile constructor
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);