getAll method
Retrieves all the notifications of this app or extension. |callback|: Returns the set of notification_ids currently in the system.
Implementation
Future<Map> getAll() async {
var $res = await promiseToFuture<JSAny>($js.chrome.notifications.getAll());
return $res.toDartMap();
}