LineShadowModel constructor

LineShadowModel({
  1. required List<Path> shadowPaths,
  2. required LinearGradientModel linearGradient,
  3. double shadowTopHeight = 0,
  4. double shadowBottomHeight = 0,
})

Implementation

LineShadowModel({
  required this.shadowPaths,
  required this.linearGradient,
  this.shadowTopHeight = 0,
  this.shadowBottomHeight = 0,
});