Skip to content

Commit

Permalink
Some dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
JhonaCodes committed Dec 19, 2024
1 parent d25a7fc commit f7481d4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 2.4.2
- Some dart format.

# 2.4.1
- Update name of state and documentation for `StateNotifierImpl`.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Add this to your package's `pubspec.yaml` file:

```yaml
dependencies:
reactive_notifier: ^2.4.1
reactive_notifier: ^2.4.2
```
## Quick Start
Expand Down
1 change: 0 additions & 1 deletion lib/src/implements/notifier_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ abstract class StateNotifierImpl<T> extends ChangeNotifier {
}
}


@immutable
T get data => _data;

Expand Down
2 changes: 0 additions & 2 deletions lib/src/viewmodel/viewmodel_impl.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ abstract class ViewModelImpl<T> extends StateNotifierImpl<T> {
StateTracker.trackStateChange(_id);
}
}

}

/// [ViewModelStateImpl]
Expand Down Expand Up @@ -98,5 +97,4 @@ abstract class ViewModelStateImpl<T> extends StateNotifierImpl<T> {
StateTracker.trackStateChange(_id);
}
}

}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: reactive_notifier
description: A Dart library for managing reactive state efficiently, supporting multiples related state.

version: 2.4.1
version: 2.4.2
homepage: https://github.com/JhonaCodes/reactive_notifier.git

environment:
Expand Down

0 comments on commit f7481d4

Please sign in to comment.