CloudIdentifier constructor
Implementation
CloudIdentifier({
/// Identifier for the cloud storage provider (e.g. 'drive.google.com').
required String providerName,
/// The provider's identifier for the given file/directory.
required String id,
}) : _wrapped = $js.CloudIdentifier(
providerName: providerName,
id: id,
);