saveGrid method

Future<ExportResponse> saveGrid({
  1. ExportFormat format = ExportFormat.EXPORT_BINARY,
  2. 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);
}