toUpperCase method
Implementation
String toUpperCase() {
return transform((_, data, next) async {
final result = await next(data);
return result.toUpperCase();
});
}
String toUpperCase() {
return transform((_, data, next) async {
final result = await next(data);
return result.toUpperCase();
});
}