downloadModelWithConfig static method

Future<void> downloadModelWithConfig(
  1. String taskId,
  2. String fileSavePath,
  3. Modeling3dReconstructDownloadConfig downloadConfig
)

Downloads the 3D object reconstruction task result using the custom configuration.

Implementation

static Future<void> downloadModelWithConfig(
  String taskId,
  String fileSavePath,
  Modeling3dReconstructDownloadConfig downloadConfig,
) async {
  await _c.invokeMethod(
    'downloadModelWithConfig',
    <String, dynamic>{
      'taskId': taskId,
      'fileSavePath': fileSavePath,
      'downloadConfig': downloadConfig._toMap(),
    },
  );
}