setLocalVideoListener method Null safety

void setLocalVideoListener(
  1. {dynamic listener(
    1. LocalVideo
    )?}
)

Set the listener for local video itself. Will be fired when video from the camera of your device is started/stopped

Implementation

void setLocalVideoListener({Function(LocalVideo)? listener}){
  _localVideoListener = listener;
}