ConnectAgentResource.fromJson constructor
ConnectAgentResource.fromJson(
- Map json_
Implementation
ConnectAgentResource.fromJson(core.Map json_)
: this(
manifest: json_['manifest'] as core.String?,
type:
json_.containsKey('type')
? TypeMeta.fromJson(
json_['type'] as core.Map<core.String, core.dynamic>,
)
: null,
);