QueryParameter.fromJson constructor

QueryParameter.fromJson(
  1. Map json_
)

Implementation

QueryParameter.fromJson(core.Map json_)
    : this(
        dataType: json_.containsKey('dataType')
            ? json_['dataType'] as core.String
            : null,
        value: json_.containsKey('value') ? json_['value'] : null,
      );