safeToString method Null safety

String safeToString(
  1. Object? object
)

Safely convert a value to a String description.

The conversion is guaranteed to not throw, so it won't use the object's toString method except for specific known and trusted types.

Implementation

static String safeToString(Object? object) {
  if (object is num || object is bool || null == object) {
    return object.toString();
  }
  if (object is String) {
    return _stringToSafeString(object);
  }
  return _objectToString(object);
}