createExportByProject method
Implementation
Future<Export> createExportByProject(String projectId) async {
final result = await _exportServiceClient.createExportForProject(
ProjectId(id: projectId),
options: CallOptions(
// compression: const GzipCodec(),
metadata: {
'authorization': token,
},
),
);
return result;
}