factory DocIdentifier.fromJSON(Map<String, dynamic> data) { return DocIdentifier( id: (data["id"] as String?), rev: (data["rev"] as String?) ); }