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,
      );