DividerMeta constructor

const DividerMeta({
  1. bool before = false,
  2. bool after = false,
  3. String? style,
})

Creates a DividerMeta instance.

Implementation

const DividerMeta({
  this.before = false,
  this.after = false,
  this.style,
});