output static method
Event Print output exception
Implementation
static void output(Object exception) {
if (exception is Exception) {
if (kDebugMode) {
print(dots);
print('EXCEPTION CATCH ON LISTENER');
print(dots);
print(exception.runtimeType);
print(dots);
print(exception.toString());
print(dots);
}
}
}