CloudIdentifier constructor

CloudIdentifier({
  1. required String providerName,
  2. required String id,
})

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,
      );