TranslateWithExpandedPaintingArea constructor

const TranslateWithExpandedPaintingArea({
  1. Key? key,
  2. required Offset offset,
  3. Clip clipBehavior = Clip.none,
  4. Widget? child,
})

Implementation

const TranslateWithExpandedPaintingArea({
  Key? key,
  required this.offset,
  this.clipBehavior = Clip.none,
  this.child,
}) : super(key: key);