bool inputEmailValid({String? msg = '请输入正确的邮箱'}) { if (!this.emailValid()) { msg.toast(); return false; } return true; }