DuplicateFilterViewRequest.fromJson constructor

DuplicateFilterViewRequest.fromJson(
  1. Map json_
)

Implementation

DuplicateFilterViewRequest.fromJson(core.Map json_)
    : this(
        filterId: json_.containsKey('filterId')
            ? json_['filterId'] as core.int
            : null,
      );