process method

Implementation

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