mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-05 08:23:12 +00:00
13 lines
253 B
Dart
13 lines
253 B
Dart
import 'package:dio/dio.dart';
|
|
|
|
import 'api_map.dart';
|
|
|
|
class ServerApi extends ApiMap {
|
|
ServerApi([String token]) {
|
|
if (token != null) {
|
|
loggedClient.options =
|
|
BaseOptions(headers: {'Authorization': 'Bearer $token'});
|
|
}
|
|
}
|
|
}
|