toString method Null safety

String toString ()
override

Returns a string representation of this object.

Implementation

String toString() {
  var msg = "";
  if (osError != null) {
    msg = ", osError: $osError";
  }
  return "SignalException: $message$msg";
}