jarrodcolburn
jarrodcolburn
I actually did get the snippets to work, but my solution was extremely hacky. I referenced the snippets package in my pubspec.yaml ```yaml # file: pubspec.yaml # add snippets package,...
Let me ask though ...even if someone gets this working, would it affect their docs pushed to [pub.dev](pub.dev)? Is dartdoc run automatically without flags on push? Both [Dart](api.dart.dev/stable) and [Flutter](api.flutter.dev)...
Although this issue was opened for `{@tool snippet}`, since it's tagged as an enhancement, It may eventually develop into a request for `{@tool sample}` and then eventually...`{@toool sample --dartpad}`. Since...
`_allDirectiveNames` only includes non dashed version of `end-template` https://github.com/dart-lang/dartdoc/blob/98e3219da0505f23e06e0a6b5902e425aadcb1c0/lib/src/model/documentation_comment.dart#L150-L152
IMO, conversation on tickets #8659 and #5165 relevant here. Also, looking at Dart (not Flutter) site for [Web apps > Deployment > Make your app smaller... ](https://dart.dev/web/deployment#make-your-app-smaller-faster-and-more-reliable) you'll see ...
Sorry, hope this isn't coming off as a gripe, I would love to see `grpc` dominate (and see less REST). But I think a part of that is making it...
The irony is that because the `jupyter` extension works fine for `typescript` by itself and won't warn of variables, and gives types hints., When the `deno extension` is `disabled` (`jupyter`...
for more context, please see https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/createOffer specifically see their comment. ```javascript myPeerConnection .createOffer() .then((offer) => myPeerConnection.setLocalDescription(offer)) ``` This Dart equivalent of this js won't work because in Dart `createOffer()` returns...
Current implementation and links: ```dart extension type RTCSessionDescriptionInit._(JSObject _) implements JSObject { external factory RTCSessionDescriptionInit({ required RTCSdpType type, String sdp, }); ``` ```dart extension type RTCLocalSessionDescriptionInit._(JSObject _) implements JSObject {...
Opened a ticket on the webref repo https://github.com/w3c/webref/issues/1155