errorWithException method

  1. @override
void errorWithException(
  1. String message,
  2. Exception exception
)
override

Function to pass a exception and error message.

Implementation

@override
void errorWithException(
  String message,
  Exception exception,
) {
  developer.log(
    message,
    name: BEAGLE_TAG,
    level: Level.SEVERE.value,
  );
}