model updates
This commit is contained in:
parent
2a28f96a3b
commit
1a04e7aaa7
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue