BatchUpdateResult.fromJson constructor
Creates from JSON
Implementation
factory BatchUpdateResult.fromJson(Map<String, dynamic> json) {
return BatchUpdateResult(
modifiedCount: json['modifiedCount'] as int,
matchedCount: json['matchedCount'] as int,
);
}