uploadState property

UploadState uploadState

The current upload state of the attachment

Implementation

UploadState get uploadState {
  if (_uploadState case final state?) return state;

  return ((assetUrl != null || imageUrl != null || thumbUrl != null)
      ? const UploadState.success()
      : const UploadState.preparing());
}