UploadServiceI18n.auto constructor

UploadServiceI18n.auto()

根据系统语言自动获取实例

Implementation

factory UploadServiceI18n.auto() {
  final systemLocale = PlatformDispatcher.instance.locale;
  final languageCode = systemLocale.languageCode;
  return UploadServiceI18n(languageCode);
}