SnapshotSettings constructor

const SnapshotSettings({
  1. Key? key,
  2. required Widget child,
  3. BoxConstraintsTransform? constraintsTransform,
  4. Translation? translation,
})

Implementation

const SnapshotSettings({
  super.key,
  required this.child,
  this.constraintsTransform,
  this.translation,
});