cloudIdentifier property

CloudIdentifier? get cloudIdentifier

Cloud storage representation of this entry. Must be provided if requested in options and the file is backed by cloud storage. For local files not backed by cloud storage, it should be undefined when requested.

Implementation

CloudIdentifier? get cloudIdentifier =>
    _wrapped.cloudIdentifier?.let(CloudIdentifier.fromJS);
set cloudIdentifier (CloudIdentifier? v)

Implementation

set cloudIdentifier(CloudIdentifier? v) {
  _wrapped.cloudIdentifier = v?.toJS;
}