BoxOptions constructor

const BoxOptions({
  1. BorderSides sides = const BorderSides(),
  2. bool fill = false,
  3. String? title,
  4. TextAlignment titleAlignment = TextAlignment.left,
  5. List<int>? borderChars,
})

Creates a BoxOptions.

Implementation

const BoxOptions({
  this.sides = const BorderSides(),
  this.fill = false,
  this.title,
  this.titleAlignment = TextAlignment.left,
  this.borderChars,
});