13 lines
328 B
Dart
13 lines
328 B
Dart
import 'dart:convert';
|
|
|
|
class AppCredintials {
|
|
static const String basicAuthCredentials = 'hamzaayedphp:malDEV@2101';
|
|
static const String serverAPI =
|
|
'fgdgf';
|
|
|
|
static const String mapAPIKEY = 'AIzaS--------q0';
|
|
String getBasicAuthCredentials() {
|
|
return base64Encode(utf8.encode(basicAuthCredentials));
|
|
}
|
|
}
|