This repository has been archived on 2023-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-12-12 15:44:23 +01:00
|
|
|
@JS()
|
|
|
|
|
library cookie;
|
|
|
|
|
|
|
|
|
|
import 'package:js/js.dart';
|
|
|
|
|
|
|
|
|
|
@JS()
|
|
|
|
|
class Cookies {
|
|
|
|
|
// external factory Cookie();
|
|
|
|
|
external static String get(String name);
|
|
|
|
|
external static void set(String name, String value);
|
|
|
|
|
}
|