showErrors property

Future<T> get showErrors

Implementation

Future<T> get showErrors => catchError((e, s) {
      print("Error in Future: $e\n$s");
      throw e;
    }).bang;