PathQueryOptionsFilter.fromJson constructor

PathQueryOptionsFilter.fromJson(
  1. Map json_
)

Implementation

PathQueryOptionsFilter.fromJson(core.Map json_)
    : this(
        filter: json_.containsKey('filter')
            ? json_['filter'] as core.String
            : null,
        match:
            json_.containsKey('match') ? json_['match'] as core.String : null,
        values: json_.containsKey('values')
            ? (json_['values'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );