UppercaseFilter class
Converts string to uppercase.
Usage:
{{ uppercase_expression | uppercase }}
@NgFilter(name:'uppercase') class UppercaseFilter { call(String text) => text == null ? text : text.toUpperCase(); }
Methods
dynamic call(String text) #
call(String text) => text == null ? text : text.toUpperCase();