We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10a91d1 commit 25ecf07Copy full SHA for 25ecf07
packages/flutter/lib/src/widgets/window.dart
@@ -48,9 +48,6 @@ abstract class WindowController with ChangeNotifier {
48
/// The archetype of the window.
49
WindowArchetype get type;
50
51
- /// Modifies this window with the provided properties.
52
- Future<void> modify({Size? size});
53
-
54
/// Destroys this window.
55
Future<void> destroy() async {
56
if (view == null) {
@@ -67,7 +64,7 @@ class RegularWindowController extends WindowController {
67
64
@override
68
65
WindowArchetype get type => WindowArchetype.regular;
69
66
70
- @override
+ /// Modify the properties of the window.
71
Future<void> modify({Size? size}) {
72
throw UnimplementedError();
73
}
0 commit comments