ContentWidget constructor
const
ContentWidget({
- Key? key,
- required List<
Content> content, - bool center = true,
- EdgeInsets padding = const EdgeInsets.all(16),
Implementation
const ContentWidget({
super.key,
required this.content,
this.center = true,
this.padding = const EdgeInsets.all(16),
});