VideoViewerChatStyle constructor

const VideoViewerChatStyle({
  1. Widget? chatIcon,
  2. Widget chat = const SizedBox(),
})

Implementation

const VideoViewerChatStyle({
  Widget? chatIcon,
  this.chat = const SizedBox(),
}) : chatIcon = chatIcon ??
          const Icon(Icons.chat_outlined, color: Colors.white, size: 20);