show<T> static method
UncompleteDocumentation
Implementation
static Future<T?> show<T>({
required BuildContext context,
required String poweredBy,
String? applicationName,
String? applicationVersion,
Widget? applicationIcon,
String? applicationLegalese,
}) {
return context.navigator().push<T>(MaterialPageRoute(
builder: (context) {
return LicenseGeneralFrameworkPage(
poweredBy: poweredBy,
applicationName: applicationName,
applicationVersion: applicationVersion,
applicationIcon: applicationIcon,
applicationLegalese: applicationLegalese,
);
},
));
}