HMSVideoTrack constructor Null safety
- {bool isDegraded,
- required HMSTrackKind kind,
- required HMSTrackSource source,
- required String trackId,
- required String trackDescription}
Implementation
HMSVideoTrack(
{this.isDegraded = false,
required HMSTrackKind kind,
required HMSTrackSource source,
required String trackId,
required String trackDescription})
: super(
kind: kind,
source: source,
trackDescription: trackDescription,
trackId: trackId,
);