CloudMediaError constructor

const CloudMediaError({
  1. required String code,
  2. required String message,
  3. dynamic originalError,
})

Implementation

const CloudMediaError({
  required this.code,
  required this.message,
  this.originalError,
});