ContentScaler constructor

const ContentScaler({
  1. Key? key,
  2. required Widget child,
  3. double initialScale = 1.0,
  4. bool showControls = true,
  5. Color? controlsBackgroundColor,
})

Implementation

const ContentScaler({
  super.key,
  required this.child,
  this.initialScale = 1.0,
  this.showControls = true,
  this.controlsBackgroundColor,
});