execute method
Implementation
Future<AuthResponse> execute(String appColor, String appName, String email) async {
if (!authEmailValidator.validate(email)) {
const message = "Invalid email";
return ErrorResponse(message, "Please check your email");
}
final AuthResponse response = await this.remoteStorageDatasource.getAuthCodeFromApi(appColor, appName, email);
return response;
}