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