VideoLayoutWidget constructor

const VideoLayoutWidget({
  1. Key? key,
  2. required List<UserModel> userList,
  3. required dynamic startIndex,
  4. required dynamic endIndex,
  5. dynamic isScreenLayout = false,
  6. dynamic isTwoUserLayout = false,
})

Implementation

const VideoLayoutWidget(
    {Key? key,
    required this.userList,
    required this.startIndex,
    required this.endIndex,
    this.isScreenLayout = false,
    this.isTwoUserLayout = false})
    : super(key: key);