platform/lib/flutter.dart

19 lines
584 B
Dart
Raw Normal View History

2017-06-30 22:57:01 +00:00
/// Flutter-compatible client library for the Angel framework.
library angel_client.flutter;
import 'dart:async';
import 'package:http/http.dart' as http;
import 'base_angel_client.dart';
export 'angel_client.dart';
/// Queries an Angel server via REST.
class Rest extends BaseAngelClient {
2018-08-26 22:41:01 +00:00
Rest(String basePath) : super(new http.Client() as http.BaseClient, basePath);
2017-06-30 22:57:01 +00:00
@override
Stream<String> authenticateViaPopup(String url, {String eventName: 'token'}) {
2018-08-26 22:41:01 +00:00
throw new UnimplementedError(
'Opening popup windows is not supported in the `dart:io` client.');
2017-06-30 22:57:01 +00:00
}
}