toUpperCase static method
Implementation
static String toUpperCase(dynamic value) {
return value == null ? '' : value.toString().trim().toUpperCase();
}
static String toUpperCase(dynamic value) {
return value == null ? '' : value.toString().trim().toUpperCase();
}