multipleVideoSwap method

Future<Map<String, dynamic>> multipleVideoSwap(
  1. SpecificVideoSwap schema
)

Implementation

Future<Map<String, dynamic>> multipleVideoSwap(
    SpecificVideoSwap schema) async {
  final endpoint = '${deepfakeBaseUrl}specific_video_swap';
  return await _post(endpoint, data: schema.toJson());
}