StoryPainterView constructor

const StoryPainterView({
  1. Key? key,
  2. required Drawable? data,
  3. Color? color,
  4. double strokeWidth(
    1. double? width
    )?,
  5. EdgeInsets? padding,
  6. Widget? placeholder,
})

Implementation

const StoryPainterView({
  Key? key,
  required this.data,
  this.color,
  this.strokeWidth,
  this.padding,
  this.placeholder,
}) : super(key: key);