Box constructor

const Box({
  1. required String content,
  2. String? title,
  3. BorderStyle borderStyle = BorderStyle.rounded,
  4. int padding = 1,
  5. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const Box({
  required this.content,
  this.title,
  this.borderStyle = BorderStyle.rounded,
  this.padding = 1,
  this.renderConfig = const RenderConfig(),
});