Strings

Method

.toUpperCase() 

var s = 'string interpolation';
print('That deserves all caps. ' + '${s.toUpperCase()} is very handy!');
// 'That deserves all caps. STRING INTERPOLATION is very handy!'





Comments