FlutterSliderSizedBox constructor

const FlutterSliderSizedBox({
  1. BoxDecoration? decoration,
  2. BoxDecoration? foregroundDecoration,
  3. Matrix4? transform,
  4. required double height,
  5. required double width,
})

Implementation

const FlutterSliderSizedBox({
  this.decoration,
  this.foregroundDecoration,
  this.transform,
  required this.height,
  required this.width,
}) : assert(width > 0 && height > 0);