Skip to content

Commit

Permalink
fix: 🐛 entity
Browse files Browse the repository at this point in the history
  • Loading branch information
tomokisun committed Dec 15, 2023
1 parent 14dc9a2 commit 31698e3
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion lib/entity/package.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ abstract class Package implements _$Package {

factory Package.fromJson(Map<String, dynamic> json) =>
_$PackageFromJson(json);
Map<String, dynamic> toJson() => _$$_PackageToJson(this as _$_Package);
}
1 change: 0 additions & 1 deletion lib/entity/product.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ abstract class Product with _$Product {

factory Product.fromJson(Map<String, dynamic> json) =>
_$ProductFromJson(json);
Map<String, dynamic> toJson() => _$$_ProductToJson(this as _$_Product);
}
2 changes: 0 additions & 2 deletions lib/entity/reminder_time.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ abstract class ReminderTime implements _$ReminderTime {

factory ReminderTime.fromJson(Map<String, dynamic> json) =>
_$ReminderTimeFromJson(json);
Map<String, dynamic> toJson() =>
_$$_ReminderTimeToJson(this as _$_ReminderTime);

DateTime dateTime() {
var t = DateTime.now().toLocal();
Expand Down

0 comments on commit 31698e3

Please sign in to comment.