DiveStreamPlayButton constructor

const DiveStreamPlayButton({
  1. Key? key,
  2. required DiveStreamingOutput streamingOutput,
  3. Color iconColor = Colors.white,
})

Implementation

const DiveStreamPlayButton(
    {Key? key, required DiveStreamingOutput streamingOutput, this.iconColor = Colors.white})
    : streamingOutput = streamingOutput,
      super(key: key);