saveGrid method
Future<ExportResponse>
saveGrid({
- ExportFormat format = ExportFormat.EXPORT_BINARY,
- ExportScope scope = ExportScope.EXPORT_ALL,
Save the grid to an in-memory payload.
Implementation
Future<ExportResponse> saveGrid({
ExportFormat format = ExportFormat.EXPORT_BINARY,
ExportScope scope = ExportScope.EXPORT_ALL,
}) async {
return VolvoxGridService.Export(ExportRequest()
..gridId = _gridId
..format = format
..scope = scope);
}