fix mainmodel

This commit is contained in:
Sai Naw Wun
2020-09-04 01:42:58 +06:30
parent 10338bbfe9
commit acfab08198
25 changed files with 668 additions and 192 deletions

View File

@@ -0,0 +1,8 @@
class SigninException {
final String msg;
SigninException(this.msg);
@override
String toString() => msg;
}