IProovEvent.error constructor

IProovEvent.error(
  1. String error,
  2. String title,
  3. String? message
)

Implementation

factory IProovEvent.error(String error, String title, String? message) {
  return IProovEventError(IProovException.error(error, title, message));
}