LicenseListPage constructor

const LicenseListPage({
  1. Key? key,
  2. Widget? title,
  3. ScaffoldBuilder? scaffoldBuilder,
  4. Map<String, String>? values,
})

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 LicenseListPage are those returned by the LicenseRegistry API, which can be used to add more licenses to the list.

Implementation

const LicenseListPage({
  Key? key,
  this.title,
  this.scaffoldBuilder,
  this.values,
}) : super(key: key);