sumitsharansatsangi

return type changed of property method

@@ -105,10 +105,10 @@ extension GetStringUtils on String { @@ -105,10 +105,10 @@ extension GetStringUtils on String {
105 GetUtils.isCaseInsensitiveContainsAny(this, b); 105 GetUtils.isCaseInsensitiveContainsAny(this, b);
106 106
107 /// capitalize the String 107 /// capitalize the String
108 - String? get capitalize => GetUtils.capitalize(this); 108 + String get capitalize => GetUtils.capitalize(this);
109 109
110 /// Capitalize the first letter of the String 110 /// Capitalize the first letter of the String
111 - String? get capitalizeFirst => GetUtils.capitalizeFirst(this); 111 + String get capitalizeFirst => GetUtils.capitalizeFirst(this);
112 112
113 /// remove all whitespace from the String 113 /// remove all whitespace from the String
114 String get removeAllWhitespace => GetUtils.removeAllWhitespace(this); 114 String get removeAllWhitespace => GetUtils.removeAllWhitespace(this);