Returns this string with suffix appended if not already present.
suffix
@useResult String ensureSuffix(String suffix) => endsWith(suffix) ? this : this + suffix;