SystemParameter.fromJson constructor

SystemParameter.fromJson(
  1. Map json_
)

Implementation

SystemParameter.fromJson(core.Map json_)
  : this(
      httpHeader: json_['httpHeader'] as core.String?,
      name: json_['name'] as core.String?,
      urlQueryParameter: json_['urlQueryParameter'] as core.String?,
    );