EventSourceInit constructor

EventSourceInit({
  1. bool? withCredentials,
})

Implementation

factory EventSourceInit({bool? withCredentials}) =>
    EventSourceInit._(withCredentials: withCredentials ?? false);