AttachmentMediaState constructor

const AttachmentMediaState({
  1. AttachmentMediaLoadingState mediaLoadingState,
  2. File? mediaFile,
  3. bool isDownloading,
})

Implementation

const factory AttachmentMediaState({
  @Default(AttachmentMediaLoadingState.loading())
  AttachmentMediaLoadingState mediaLoadingState,
  File? mediaFile,
  @Default(false) bool isDownloading,
}) = _AttachmentMediaState;