BigAvatarWidget.myUser constructor

const BigAvatarWidget.myUser(
  1. MyUser? myUser, {
  2. Key? key,
  3. void onUpload()?,
  4. void onDelete()?,
  5. void onEdit()?,
  6. bool loading = false,
  7. String? error,
})

Builds a BigAvatarWidget of the provided myUser.

Implementation

const BigAvatarWidget.myUser(
  this.myUser, {
  super.key,
  this.onUpload,
  this.onDelete,
  this.onEdit,
  this.loading = false,
  this.error,
}) : _mode = _BigAvatarMode.myUser,
     user = null,
     chat = null,
     builder = _defaultBuilder;