toJson method
Creates a json from the object
Implementation
Map toJson() {
return {
'small_file_id': smallFileId,
'small_file_unique_id': smallFileUniqueId,
'big_file_id': bigFileId,
'big_file_unique_id': bigFileUniqueId,
}..removeWhere((_, v) => v == null);
}