If the given text is null, it falls back to the provided fallback instance.
text
fallback
factory Message.fallback(String? text, Message fallback) => text == null ? fallback : StaticMessage(text);