Check null string, return given value if null
String validate([String defaultValue = '']) => isNullOrEmpty ? defaultValue : this!;