QueryOverride.fromJson constructor

QueryOverride.fromJson(
  1. Map json_
)

Implementation

QueryOverride.fromJson(core.Map json_)
    : this(
        queryParams: json_.containsKey('queryParams')
            ? json_['queryParams'] as core.String
            : null,
      );