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
25
25
///
26
26
/// * [Icons] , for the list of available static Material Icons.
27
27
abstract class AnimatedIcons {
28
+ // This class is not meant to be instantiated or extended; this constructor
29
+ // prevents instantiation and extension.
30
+ AnimatedIcons ._();
28
31
29
32
/// The Material Design add to event icon animation.
30
33
///
Original file line number Diff line number Diff line change @@ -632,7 +632,6 @@ class _MaterialStateUnderlineInputBorder extends MaterialStateUnderlineInputBord
632
632
///
633
633
/// {@macro flutter.material.MaterialStateProperty.implementations}
634
634
abstract class MaterialStateProperty <T > {
635
-
636
635
/// Returns a value of type `T` that depends on [states] .
637
636
///
638
637
/// 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 {
255
255
/// See also:
256
256
/// * [CommandWithTarget] , a base class for [Command] s with [Finder] s.
257
257
abstract class CommandExtension {
258
-
259
258
/// Identifies the type of command to be used by the driver extension.
260
259
String get commandKind;
261
260
You can’t perform that action at this time.
0 commit comments