ReportModel constructor

ReportModel({
  1. int? id,
  2. ReportSubTypeModel? type,
  3. PostModel? post,
  4. UserModel? user,
  5. DateTime? createdAt,
})

Implementation

ReportModel({this.id, this.type, this.post, this.user, this.createdAt});