Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
sumitsharansatsangi
2023-07-16 21:33:50 +0530
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
30e03d06fba0a34439d04efcdb4505607a56b911
30e03d06
1 parent
c975ae09
return type changed of property method
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
lib/get_utils/src/extensions/string_extensions.dart
lib/get_utils/src/extensions/string_extensions.dart
View file @
30e03d0
...
...
@@ -105,10 +105,10 @@ extension GetStringUtils on String {
GetUtils
.
isCaseInsensitiveContainsAny
(
this
,
b
);
/// capitalize the String
String
?
get
capitalize
=>
GetUtils
.
capitalize
(
this
);
String
get
capitalize
=>
GetUtils
.
capitalize
(
this
);
/// Capitalize the first letter of the String
String
?
get
capitalizeFirst
=>
GetUtils
.
capitalizeFirst
(
this
);
String
get
capitalizeFirst
=>
GetUtils
.
capitalizeFirst
(
this
);
/// remove all whitespace from the String
String
get
removeAllWhitespace
=>
GetUtils
.
removeAllWhitespace
(
this
);
...
...
Please
register
or
login
to post a comment