Returns the entity as a map with only insertable fields
Map<String, dynamic> get filtered { final entries = source.entries.where((e) => isInsertable(e.key, e.value)); return Map.fromEntries(entries); }