Skip to content

Commit 5f35221

Browse files
committed
Reformat and optimize imports.
1 parent a742f0c commit 5f35221

File tree

5 files changed

+3
-4
lines changed

5 files changed

+3
-4
lines changed

lib/src/api/custom_component.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import 'package:equatable/equatable.dart';
66
import 'package:json_annotation/json_annotation.dart';
77

8-
import 'models/models.dart';
98
import 'mixins.dart';
9+
import 'models/models.dart';
1010
import 'utils.dart';
1111

1212
part 'custom_component.g.dart';

lib/src/api/mixins.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
import 'package:json_annotation/json_annotation.dart';
66

7-
import 'models/ink_well.dart';
87
import 'models/models.dart';
98
import 'nodes/nodes.dart';
109

lib/src/api/models/border_side.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import 'package:json_annotation/json_annotation.dart';
77

88
import '../mixins.dart';
99
import 'models.dart';
10+
1011
part 'border_side.g.dart';
1112

1213
/// Represents the style of the border.

lib/src/api/models/ink_well.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ part 'ink_well.g.dart';
1212
/// Represents properties that relate to the [InkWell] widget in Flutter.
1313
@JsonSerializable()
1414
class InkWellModel with EquatableMixin, SerializableMixin {
15-
1615
/// The highlight color of the [InkWell] if [useInkWell] is true.
1716
final ColorRGBA? highlightColor;
1817

lib/src/api/nodes/scene_node.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// All rights reserved. Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.md file.
44

5-
import 'base_node.dart';
65
import '../mixins.dart';
76
import '../models/models.dart';
7+
import 'base_node.dart';
88

99
/// SceneNode should never be called directly, only inherited by other nodes.
1010
abstract class SceneNode extends BaseNode

0 commit comments

Comments
 (0)