EraseDrawable constructor
Creates a EraseDrawable to erase path
.
The path will be erased with the passed strokeWidth
if provided.
Implementation
EraseDrawable({
required List<Offset> path,
double strokeWidth = 1,
bool hidden = false,
}) : super(path: path, strokeWidth: strokeWidth, hidden: hidden);