externaldatav1Quorum.fromJson constructor
Implementation
factory externaldatav1Quorum.fromJson(Map<String, dynamic> json) {
final _threshold = json['threshold'] as num;
final _userIds = (json['userIds'] as List).map((e) => e as String).toList();
return externaldatav1Quorum(
threshold: _threshold,
userIds: _userIds,
);
}