| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 /// A set of options used to configure the behavior of IDE functionality. |
| 6 abstract class IdeOptions { |
| 7 /// Whether to generate boilerplate for lists of Flutter Widget children. |
| 8 /// See: https://github.com/flutter/flutter-intellij/issues/463 |
| 9 bool get generateFlutterWidgetChildrenBoilerPlate; |
| 10 } |
| 11 |
| 12 class IdeOptionsImpl implements IdeOptions { |
| 13 /// Initialize a newly created set of options with default values. |
| 14 IdeOptionsImpl(); |
| 15 |
| 16 @override |
| 17 bool generateFlutterWidgetChildrenBoilerPlate = false; |
| 18 } |
| OLD | NEW |