toLocaleUpperCase method
Returns the string converted to upper case, taking the given locale into
account.
import 'package:intl4x/case_mapping.dart';
void main() {
print('i'.toLocaleUpperCase(Locale('tr'))); // Prints 'İ'
}
Implementation
String toLocaleUpperCase(Locale locale) =>
CaseMapping(locale: locale).toUpperCase(this);