ExternalAction.fromJson constructor
ExternalAction.fromJson(
- Map json_
Implementation
ExternalAction.fromJson(core.Map json_)
: this(
type: json_.containsKey('type') ? json_['type'] as core.String : null,
uri: json_.containsKey('uri') ? json_['uri'] as core.String : null,
);