Read base url from development, and removed unused lines

This commit is contained in:
Abdullah Alassaf
2024-09-04 17:03:21 +03:00
parent a4b1a9e85d
commit 0db7a9e1ba
6 changed files with 15 additions and 145 deletions

View File

@ -1,8 +1,7 @@
import 'package:flutter_dotenv/flutter_dotenv.dart';
abstract class ApiEndpoints {
// static String baseUrl = dotenv.env['BASE_URL'] ?? '';
static String baseUrl = 'https://syncrow-dev.azurewebsites.net';
static String baseUrl = dotenv.env['BASE_URL'] ?? '';
static const String signUp = '/authentication/user/signup';
static const String login = '/authentication/user/login';
static const String forgetPassword = '/authentication/user/forget-password';