BigAvatarWidget.chat constructor

const BigAvatarWidget.chat(
  1. RxChat? chat, {
  2. Key? key,
  3. void onUpload()?,
  4. void onDelete()?,
  5. void onEdit()?,
  6. bool loading = false,
  7. String? error,
  8. Widget builder(
    1. Widget
    ) = _defaultBuilder,
})

Builds a BigAvatarWidget of the provided chat.

Implementation

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