menu
dart_helper_utils package
documentation
dart_helper_utils.dart
DHUNullSafeCaseConversionExtensions
tryToUpperCase method
tryToUpperCase method
dark_mode
light_mode
tryToUpperCase
method
String
?
tryToUpperCase
(
)
Converts the string to uppercase if it's not null.
Implementation
String? tryToUpperCase() => this?.toUpperCase();
dart_helper_utils package
documentation
dart_helper_utils
DHUNullSafeCaseConversionExtensions
tryToUpperCase method
DHUNullSafeCaseConversionExtensions extension on
String
?