TransformView constructor

const TransformView({
  1. Key? key,
  2. required Size size,
  3. required Widget child,
  4. double? opacity,
  5. double? scale,
  6. Offset? offset,
})

Implementation

const TransformView({
  Key? key,
  required this.size,
  required this.child,
  this.opacity,
  this.scale,
  this.offset,
}) : super(key: key);