VideoWidget constructor

const VideoWidget({
  1. Key? key,
  2. required FlutterVideoTrimmer flutterVideoTrimmer,
  3. Color borderColor = Colors.transparent,
  4. double borderWidth = 0.0,
  5. EdgeInsets padding = const EdgeInsets.all(0.0),
})

Implementation

const VideoWidget({
  super.key,
  required this.flutterVideoTrimmer,
  this.borderColor = Colors.transparent,
  this.borderWidth = 0.0,
  this.padding = const EdgeInsets.all(0.0),
});