dlgAbout method

Future<void> dlgAbout({
  1. Widget? appIcon,
  2. String? appName,
  3. String? appVersion,
  4. String? appLegalese,
})

Will display information about your flutter app.

Implementation

Future<void> dlgAbout({
  Widget? appIcon,
  String? appName,
  String? appVersion,
  String? appLegalese,
}) async {
  showLicensePage(
    context: cNavigatorKey.currentContext!,
    applicationIcon: appIcon,
    applicationName: appName,
    applicationVersion: appVersion,
    applicationLegalese: appLegalese,
    useRootNavigator: true,
  );
}