HMSAudioTrack constructor Null safety

HMSAudioTrack(
  1. {required HMSTrackKind kind,
  2. required HMSTrackSource source,
  3. required String trackId,
  4. required String trackDescription}
)

Implementation

HMSAudioTrack(
    {required HMSTrackKind kind,
    required HMSTrackSource source,
    required String trackId,
    required String trackDescription})
    : super(
        kind: kind,
        source: source,
        trackDescription: trackDescription,
        trackId: trackId,
      );