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