VideoCardType typedef

VideoCardType = Widget Function({Color? backgroundColor, String? doMirror, required double height, int? imageSize, String? name, VoidCallback? onVideoPress, dynamic parameters, required Participant participant, bool? showControls, bool? showInfo, required Stream stream, required double width})

Custom builder function type for VideoCard component. Allows complete customization of video participant display.

Implementation

typedef VideoCardType = Widget Function({
  required Participant participant,
  required Stream stream,
  required double width,
  required double height,
  int? imageSize,
  String? doMirror,
  bool? showControls,
  bool? showInfo,
  String? name,
  Color? backgroundColor,
  VoidCallback? onVideoPress,
  dynamic parameters,
});