Line constructor
const
Line({
- Key? key,
- Color? color,
- double width = 1,
- EdgeInsets? margin,
Implementation
const Line({
Key? key,
this.color,
this.width = 1,
this.margin,
}) : super(key: key);