ZoomWidget constructor

const ZoomWidget({
  1. Key? key,
  2. required Widget child,
  3. double? size,
  4. double? maxSize,
  5. Color? color,
  6. Color? color2,
})

Implementation

const ZoomWidget(
    {Key? key,
    required this.child,
    this.size,
    this.maxSize,
    this.color,
    this.color2})
    : super(key: key);