ForwardInfo.fromJson constructor
ForwardInfo.fromJson(
- Map json_
Implementation
ForwardInfo.fromJson(core.Map json_)
: this(
ipAddress: json_.containsKey('ipAddress')
? json_['ipAddress'] as core.String
: null,
resourceUri: json_.containsKey('resourceUri')
? json_['resourceUri'] as core.String
: null,
target: json_.containsKey('target')
? json_['target'] as core.String
: null,
);