toStringOrEmptyIfNull method

String toStringOrEmptyIfNull()

Implementation

String toStringOrEmptyIfNull() => this == null ? "" : toString();