fix dart docs for build (#67479)

This commit is contained in:
Jonah Williams 2020-10-06 18:15:15 -07:00 committed by GitHub
parent e9c94e6c45
commit 6620f831e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@
/// See also:
///
/// * [How to Write a Flutter Web Plugin](https://medium.com/flutter/how-to-write-a-flutter-web-plugin-5e26c689ea1), a Medium article
/// describing how the [url_launcher] package was created using [flutter_web_plugins].
/// describing how the `url_launcher` package was created using [flutter_web_plugins].
library flutter_web_plugins;
export 'src/plugin_event_channel.dart';

View File

@ -28,12 +28,12 @@ import 'plugin_registry.dart';
///
/// The first method is `listen`. When called, it begins forwarding
/// messages to the framework side when they are added to the
/// [controller]. This triggers the [onListen] callback on the
/// [controller].
/// [controller]. This triggers the [StreamController.onListen] callback
/// on the [controller].
///
/// The other method is `cancel`. When called, it stops forwarding
/// events to the framework. This triggers the [onCancel] callback on
/// the [controller].
/// events to the framework. This triggers the [StreamController.onCancel]
/// callback on the [controller].
///
/// Events added to the [controller] when the framework is not
/// subscribed are silently discarded.