localeName property

  1. @Deprecated('Use NativePlatform.current!.localeName instead')
String get localeName
inherited

Get the name of the current locale.

Warning

This property is deprecated on Platform. It is only implemented by the legacy LocalPlatform and FakePlatform classes, and cannot be accessed through Platform.current. Use NativePlatform to access these properties instead, accessed as NativePlatform.current.

Implementation

@Deprecated('Use NativePlatform.current!.localeName instead')
String get localeName => throw UnimplementedError(
  'Use NativePlatform.current!.localeName instead',
);