process method
Implementation
Future<VideoRequestDetails> process() async {
if (_concatData?.id == null) throw Exception('Call build() first');
final response = await TruvideoVideoSdk.processVideo(_concatData!.id);
return VideoRequestDetails.fromJsonString(response!);
}