CustomSingleChildLayout constructor
Creates a custom single child layout.
The delegate
argument must not be null.
Implementation
const CustomSingleChildLayout({
Key key,
@required this.delegate,
Widget child
}) : assert(delegate != null),
super(key: key, child: child);