AppLine constructor

const AppLine({
  1. Key? key,
  2. Color color = Colors.grey,
  3. required double width,
  4. double height = 1.0,
  5. double? borderRadius,
})

Implementation

const AppLine({
  super.key,
  this.color = Colors.grey,
  required this.width,
  this.height = 1.0,
  this.borderRadius,
});