DeleteFilterViewRequest.fromJson constructor

DeleteFilterViewRequest.fromJson(
  1. Map json_
)

Implementation

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