MasonryLayout constructor
const
MasonryLayout({})
Creates a MasonryLayout instance
Requires:
children: The content widgets to displaymaxCrossAxisExtent: The maximum item width/heightscrollDirection: The primary scrolling axis
Implementation
const MasonryLayout({
super.key,
required this.children,
required this.maxCrossAxisExtent,
required this.scrollDirection,
});