| Index: pkg/watcher/lib/src/constructable_file_system_event.dart
|
| diff --git a/pkg/watcher/lib/src/constructable_file_system_event.dart b/pkg/watcher/lib/src/constructable_file_system_event.dart
|
| index 010d2979d0f160caf017843eeba94628defef3f9..d00a1dce7eab2e3bfbc5d3e7447deced0372f5b5 100644
|
| --- a/pkg/watcher/lib/src/constructable_file_system_event.dart
|
| +++ b/pkg/watcher/lib/src/constructable_file_system_event.dart
|
| @@ -40,11 +40,11 @@ class ConstructableFileSystemModifyEvent extends _ConstructableFileSystemEvent
|
| final type = FileSystemEvent.MODIFY;
|
|
|
| ConstructableFileSystemModifyEvent(String path, bool isDirectory,
|
| - this.contentChanged)
|
| + this.contentChanged)
|
| : super(path, isDirectory);
|
|
|
| String toString() =>
|
| - "FileSystemModifyEvent('$path', contentChanged=$contentChanged)";
|
| + "FileSystemModifyEvent('$path', contentChanged=$contentChanged)";
|
| }
|
|
|
| class ConstructableFileSystemMoveEvent extends _ConstructableFileSystemEvent
|
| @@ -53,7 +53,7 @@ class ConstructableFileSystemMoveEvent extends _ConstructableFileSystemEvent
|
| final type = FileSystemEvent.MOVE;
|
|
|
| ConstructableFileSystemMoveEvent(String path, bool isDirectory,
|
| - this.destination)
|
| + this.destination)
|
| : super(path, isDirectory);
|
|
|
| String toString() => "FileSystemMoveEvent('$path', '$destination')";
|
|
|