ScreenLayout.named constructor
Creates a ScreenLayout with the name name
that adjusts the size of the widget specified in child
.
Implementation
factory ScreenLayout.named({
Key? key,
Widget? child,
required String name,
}) {
return ScreenLayout(
key: key,
name: name,
child: child,
);
}