UserImageButton constructor

const UserImageButton({
  1. required SessionManager sessionManager,
  2. bool compact = true,
  3. double elevation = 0,
  4. double borderWidth = 0,
  5. Color borderColor = Colors.white,
  6. Key? key,
})

Creates a user image button, used to upload a new user image for a signed in user.

Implementation

const UserImageButton({
  required this.sessionManager,
  this.compact = true,
  this.elevation = 0,
  this.borderWidth = 0,
  this.borderColor = Colors.white,
  super.key,
});