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; }