EasyDivider constructor

const EasyDivider({
  1. Key? key,
  2. bool? dashed,
  3. String? text,
  4. DividerOrientation? orientation,
})

分割线

Implementation

const EasyDivider({
  Key? key,
  this.dashed,
  this.text,
  this.orientation,
}) : super(key: key);