Box constructor
const
Box({
- required String content,
- String? title,
- BorderStyle borderStyle = BorderStyle.rounded,
- int padding = 1,
- RenderConfig renderConfig = const RenderConfig(),
Implementation
const Box({
required this.content,
this.title,
this.borderStyle = BorderStyle.rounded,
this.padding = 1,
this.renderConfig = const RenderConfig(),
});