Line constructor
Line({})
Implementation
Line({
Key? key,
this.child,
required this.color,
this.margin,
double? width,
double? height,
double? radius,
}) :
size = Size(width ?? DeviceUtil.screenW.toDouble(), height ?? 1),
radius = radius ?? 0,
super(key: key);