TF-740 Create OrderListType object

This commit is contained in:
dab246
2022-07-27 12:02:45 +07:00
committed by Dat H. Pham
parent da93ec7dcc
commit 59ce413a78
3 changed files with 88 additions and 1 deletions
@@ -1773,4 +1773,22 @@ class AppLocalizations {
'Indent',
name: 'indent');
}
String get orderList {
return Intl.message(
'Order list',
name: 'orderList');
}
String get numberedList {
return Intl.message(
'Numbered list',
name: 'numberedList');
}
String get bulletedList {
return Intl.message(
'Bulleted list',
name: 'bulletedList');
}
}