GoogleFirestoreAdminV1ExportDocumentsRequest.fromJson constructor

GoogleFirestoreAdminV1ExportDocumentsRequest.fromJson(
  1. Map json_
)

Implementation

GoogleFirestoreAdminV1ExportDocumentsRequest.fromJson(core.Map json_)
    : this(
        collectionIds: json_.containsKey('collectionIds')
            ? (json_['collectionIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        namespaceIds: json_.containsKey('namespaceIds')
            ? (json_['namespaceIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        outputUriPrefix: json_.containsKey('outputUriPrefix')
            ? json_['outputUriPrefix'] as core.String
            : null,
        snapshotTime: json_.containsKey('snapshotTime')
            ? json_['snapshotTime'] as core.String
            : null,
      );