ExistenceFilter.fromJson constructor

ExistenceFilter.fromJson(
  1. Map json_
)

Implementation

ExistenceFilter.fromJson(core.Map json_)
    : this(
        count: json_.containsKey('count') ? json_['count'] as core.int : null,
        targetId: json_.containsKey('targetId')
            ? json_['targetId'] as core.int
            : null,
        unchangedNames: json_.containsKey('unchangedNames')
            ? BloomFilter.fromJson(json_['unchangedNames']
                as core.Map<core.String, core.dynamic>)
            : null,
      );