File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
flutter_driver/lib/src/extension Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ part of material_animated_icons; // ignore: use_string_in_part_of_directives
2525///
2626/// * [Icons] , for the list of available static Material Icons.
2727abstract class AnimatedIcons {
28+ // This class is not meant to be instantiated or extended; this constructor
29+ // prevents instantiation and extension.
30+ AnimatedIcons ._();
2831
2932 /// The Material Design add to event icon animation.
3033 ///
Original file line number Diff line number Diff line change @@ -632,7 +632,6 @@ class _MaterialStateUnderlineInputBorder extends MaterialStateUnderlineInputBord
632632///
633633/// {@macro flutter.material.MaterialStateProperty.implementations}
634634abstract class MaterialStateProperty <T > {
635-
636635 /// Returns a value of type `T` that depends on [states] .
637636 ///
638637 /// Widgets like [TextButton] and [ElevatedButton] apply this method to their
Original file line number Diff line number Diff line change @@ -255,7 +255,6 @@ abstract class FinderExtension {
255255/// See also:
256256/// * [CommandWithTarget] , a base class for [Command] s with [Finder] s.
257257abstract class CommandExtension {
258-
259258 /// Identifies the type of command to be used by the driver extension.
260259 String get commandKind;
261260
You can’t perform that action at this time.
0 commit comments