toMap method
Implementation
@override
Map<String, Object?> toMap() {
final data = <String, Object?>{
'all': all,
'documentId': documentId,
'version': version,
'name': name,
'documentDescription': documentDescription
};
data.removeWhere((key, value) => value == null);
return data;
}