addreport method
Implementation
Future addreport(String uid, String uidofusertoreport, String messagetoreport,
String date) async {
DocumentReference documentrefrence = await report.add({
"reportedby": uid,
"reported": uidofusertoreport,
"messagereported": messagetoreport,
"date": date
});
}