imageTo3d method

Future<Map<String, dynamic>> imageTo3d(
  1. Image23D schema
)

Implementation

Future<Map<String, dynamic>> imageTo3d(Image23D schema) async {
  final endpoint = '${threeDBaseUrl}image_to_3d';
  return await _post(endpoint, data: schema.toJson());
}