| Index: pkg/intl/lib/src/intl_helpers.dart
|
| diff --git a/pkg/intl/lib/src/intl_helpers.dart b/pkg/intl/lib/src/intl_helpers.dart
|
| index d431584fdea98f2384c5aa1fe6e7279e483600d9..c1133ea47c9e2eaba505b943c66872e9769cf483 100644
|
| --- a/pkg/intl/lib/src/intl_helpers.dart
|
| +++ b/pkg/intl/lib/src/intl_helpers.dart
|
| @@ -24,7 +24,13 @@ class UninitializedLocaleData<F> {
|
|
|
| operator [](String key) =>
|
| (key == 'en_US') ? fallbackData : _throwException();
|
| +
|
| + String lookupMessage(String message_str, [final String desc='',
|
| + final Map examples=const {}, String locale,
|
| + String name, List<String> args]) => _throwException();
|
| +
|
| List get keys => _throwException();
|
| +
|
| bool containsKey(String key) => (key == 'en_US') ? true : _throwException();
|
|
|
| _throwException() {
|
|
|