init flutter shared project

This commit is contained in:
2021-06-01 19:13:34 +07:00
commit ef62225cc9
9 changed files with 352 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
library cubetiq_flutter_shared;
class MyFunction {
static String? asUpperCaseThenTrim(String? text) {
if (text == null || text.isEmpty) {
return text;
}
return text.toUpperCase().trim();
}
}