You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
363 B
16 lines
363 B
import 'package:bowl_in/model/IAuthManager.dart';
|
|
import 'package:bowl_in/model/LocalManager/LocalData.dart';
|
|
|
|
class AuthManager extends IAuthManager {
|
|
final LocalData parent;
|
|
|
|
// Constructor
|
|
AuthManager(this.parent);
|
|
|
|
@override
|
|
bool verifiedUser(String mail, String password) {
|
|
// TODO: implement verifiedUser
|
|
throw UnimplementedError();
|
|
}
|
|
|
|
} |