FastContent constructor

const FastContent({
  1. Key? key,
  2. required List<Widget> children,
  3. double maxWidth = 800,
})

maxWidth default is 800 children is required FastContent is a widget to wrap your content

Implementation

const FastContent({super.key, required this.children, this.maxWidth = 800});