CircularUserImage constructor

const CircularUserImage({
  1. UserInfo? userInfo,
  2. UserInfoPublic? userInfoPublic,
  3. double size = 20.0,
  4. double elevation = 0,
  5. Color borderColor = Colors.white,
  6. double borderWidth = 0,
  7. Key? key,
})

Creates a circular image that represents a user.

Implementation

const CircularUserImage({
  this.userInfo,
  this.userInfoPublic,
  this.size = 20.0,
  this.elevation = 0,
  this.borderColor = Colors.white,
  this.borderWidth = 0,
  super.key,
});