MirrorFlyView constructor

const MirrorFlyView({
  1. Key? key,
  2. @Deprecated("This field is not used and handled internally") bool mirror = true,
  3. ScalingType scalingType = ScalingType.scaleAspectFILL,
  4. AlignmentType alignmentType = AlignmentType.TopLeft,
  5. Color? viewBgColor,
  6. bool? alignProfilePictureCenter = true,
  7. int? profileSize = 80,
  8. bool? hideProfileView = false,
  9. required String userJid,
  10. bool? showSpeakingRipple = false,
  11. dynamic onClick()?,
})

Constructor for the MirrorFlyView class.

Implementation

const MirrorFlyView(
    {Key? key,
    @Deprecated("This field is not used and handled internally")
    this.mirror = true,
    this.scalingType = ScalingType.scaleAspectFILL,
    this.alignmentType = AlignmentType.TopLeft,
    this.viewBgColor,
    this.alignProfilePictureCenter = true,
    // this.horizontalGravity = HorizontalGravity.center,
    // this.profileview,
    this.profileSize = 80,
    this.hideProfileView = false,
    required this.userJid,
    this.showSpeakingRipple = false,
    this.onClick})
    : super(key: key);