textToVideo method

Future<Map<String, dynamic>> textToVideo(
  1. Text2Video schema
)

Implementation

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