model updates

This commit is contained in:
MohammadTaha Basiri 2022-01-29 13:55:47 +03:30
parent 2a28f96a3b
commit 1a04e7aaa7
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ import 'feedback.dart';
import 'user.dart'; import 'user.dart';
class Reply { class Reply {
final int id; int id;
final String text; final String text;
final String createdAt; final String createdAt;
final bool liked; final bool liked;
@ -11,7 +11,7 @@ class Reply {
final UserOverview user; final UserOverview user;
final UserOverview toUser; final UserOverview toUser;
const Reply({ Reply({
required this.id, required this.id,
required this.text, required this.text,
required this.createdAt, required this.createdAt,