mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2026-02-05 19:52:17 +00:00
12 lines
278 B
Dart
12 lines
278 B
Dart
|
|
import 'app_localizations.dart';
|
||
|
|
|
||
|
|
// ignore_for_file: type=lint
|
||
|
|
|
||
|
|
/// The translations for English (`en`).
|
||
|
|
class AppLocalizationsEn extends AppLocalizations {
|
||
|
|
AppLocalizationsEn([String locale = 'en']) : super(locale);
|
||
|
|
|
||
|
|
@override
|
||
|
|
String get helloWorld => 'Hello World!';
|
||
|
|
}
|