You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
525 B
Dart
23 lines
525 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
/// End points
|
|
const BASE_URL = 'https://uat.hmgwebservices.com/Services';
|
|
const GET_PROJECT = '/Lists.svc/REST/GetProject';
|
|
const LOGIN = "/Authentication.svc/REST/CheckDriverAuthentication";
|
|
const GET_ALL_ORDERS = '/Patients.svc/REST/PatientER_Delivery_GetAllOrder';
|
|
const SCAN_QR = '/Patients.svc/REST/PatientER_Delivery_OrderInsert';
|
|
|
|
/// Body Constant
|
|
const CHANNEL = 9;
|
|
|
|
|
|
/// design constant
|
|
const MAX_SMALL_SCREEN = 660;
|
|
|
|
|
|
class AppGlobal {
|
|
static BuildContext context;
|
|
}
|
|
|
|
|