MediatorResult constructor

MediatorResult({
  1. required bool isSuccess,
  2. String? errorMessage,
  3. Exception? exception,
})

Implementation

MediatorResult({
  required this.isSuccess,
  this.errorMessage,
  this.exception,
});