docs(localization): add localization docs

This commit is contained in:
Salvatore Giordano
2021-07-28 17:20:14 +02:00
parent fd38c25684
commit 800baec932
6 changed files with 105 additions and 8 deletions
@@ -29,7 +29,6 @@ void main() {
expect(newUser.id, user.id);
expect(newUser.role, user.role);
expect(newUser.name, user.name);
expect(newUser.language, user.language);
newUser = user.copyWith(
id: 'test',
@@ -42,7 +41,6 @@ void main() {
expect(newUser.id, 'test');
expect(newUser.role, 'test');
expect(newUser.name, 'test');
expect(newUser.language, 'en');
});
});
}