textTo3d method

Future<Map<String, dynamic>> textTo3d(
  1. Text23D schema
)

Implementation

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