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