FlexibleVideoOptions constructor

const FlexibleVideoOptions(
  1. {required double customWidth,
  2. required double customHeight,
  3. required int rows,
  4. required int columns,
  5. required List<Widget> componentsToRender,
  6. bool showAspect = true,
  7. Color backgroundColor = Colors.transparent}
)

Implementation

const FlexibleVideoOptions(
    {required this.customWidth,
    required this.customHeight,
    required this.rows,
    required this.columns,
    required this.componentsToRender,
    this.showAspect = true,
    this.backgroundColor = Colors.transparent});