CustomComponentType typedef

CustomComponentType = Widget Function({required MediasfuParameters parameters})

Custom widget function type for complete MediaSFU component replacement. Allows users to provide their own widget instead of the default MediaSFU interface. The function receives MediasfuParameters with all the current state and methods.

Implementation

typedef CustomComponentType = Widget Function({
  required MediasfuParameters parameters,
});