Files
cherrypick/examples/postly/lib/domain/entity/post.dart

13 lines
236 B
Dart
Raw Normal View History

2025-05-16 17:56:57 +03:00
import 'package:freezed_annotation/freezed_annotation.dart';
part 'post.freezed.dart';
@freezed
class Post with _$Post {
const factory Post({
required int id,
required String title,
required String body,
}) = _Post;
}