Divider constructor

const Divider({
  1. double margin = 16,
  2. String? color,
  3. String? label,
  4. bool dashed = false,
  5. Key? key,
})

Implementation

const Divider({
  this.margin = 16,
  this.color,
  this.label,
  this.dashed = false,
  super.key,
});