Skip to content

Instantly share code, notes, and snippets.

@ibhavikmakwana
Created December 1, 2019 15:52
Show Gist options
  • Save ibhavikmakwana/0e4d41ccfca3d898fd61c36d3f5bd740 to your computer and use it in GitHub Desktop.
Save ibhavikmakwana/0e4d41ccfca3d898fd61c36d3f5bd740 to your computer and use it in GitHub Desktop.
String Extension Method
void main() {
print('someString'.firstLetterToUpperCase());
}
extension StringExtension on String{
get firstLetterToUpperCase {
if (this != null)
return this[0].toUpperCase() + this.substring(1);
else
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment