1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 15:03:22 +00:00
comunicmobile/lib/models/new_comment.dart

23 lines
471 B
Dart
Raw Normal View History

2021-02-07 16:09:08 +00:00
import 'package:image_picker/image_picker.dart';
2019-05-18 12:58:35 +00:00
import 'package:meta/meta.dart';
/// New comment information
///
/// @author Pierre HUBERT
class NewComment {
final int postID;
final String content;
2021-02-07 16:09:08 +00:00
final PickedFile image;
2019-05-18 12:58:35 +00:00
const NewComment({
@required this.postID,
@required this.content,
@required this.image,
}) : assert(postID != null);
bool get hasContent => content != null && content.length > 0;
bool get hasImage => image != null;
}