textToVideo method
Implementation
Future<Map<String, dynamic>> textToVideo(Text2Video schema) async {
final endpoint = '${videoBaseUrl}text2video';
return await _post(endpoint, data: schema.toJson());
}
Future<Map<String, dynamic>> textToVideo(Text2Video schema) async {
final endpoint = '${videoBaseUrl}text2video';
return await _post(endpoint, data: schema.toJson());
}