BigUserCard constructor

BigUserCard({
  1. Color? backgroundColor,
  2. Color? settingColor,
  3. double? cardRadius = 30,
  4. required String? userName,
  5. Color? backgroundMotifColor = Colors.white,
  6. Widget? cardActionWidget,
  7. Widget? userMoreInfo,
  8. required ImageProvider<Object> userProfilePic,
})

Implementation

BigUserCard({
  this.backgroundColor,
  this.settingColor,
  this.cardRadius = 30,
  required this.userName,
  this.backgroundMotifColor = Colors.white,
  this.cardActionWidget,
  this.userMoreInfo,
  required this.userProfilePic,
});