7 lines
219 B
Dart
7 lines
219 B
Dart
enum LoginType { email, fb, google, apple }
|
|
|
|
extension LoginTypeExt on LoginType {
|
|
bool equalsTo(LoginType type) => this.toString() == type.toString();
|
|
bool equalsStringTo(String type) => this.toString() == type;
|
|
}
|