VideoTaskResult constructor

const VideoTaskResult({
  1. required bool success,
  2. required String message,
  3. required VideoTaskStatus status,
  4. String? taskId,
  5. String? error,
})

Implementation

const VideoTaskResult({
  required this.success,
  required this.message,
  required this.status,
  this.taskId,
  this.error,
});