GetDebugConfigRequest.fromJson constructor
GetDebugConfigRequest.fromJson(
- Map json_
Implementation
GetDebugConfigRequest.fromJson(core.Map json_)
: this(
componentId: json_.containsKey('componentId')
? json_['componentId'] as core.String
: null,
location: json_.containsKey('location')
? json_['location'] as core.String
: null,
workerId: json_.containsKey('workerId')
? json_['workerId'] as core.String
: null,
);