QueryParameter.fromJson constructor

QueryParameter.fromJson(
  1. Map json_
)

Implementation

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