LicensePage constructor

const LicensePage({Key key, String applicationName, String applicationVersion, String applicationLegalese })

Creates a page that shows licenses for software used by the application.

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

The licenses shown on the LicensePage are those returned by the LicenseRegistry API, which can be used to add more licenses to the list.

Implementation

const LicensePage({
  Key key,
  this.applicationName,
  this.applicationVersion,
  this.applicationLegalese
}) : super(key: key);