GetDebugConfigRequest.fromJson constructor

GetDebugConfigRequest.fromJson(
  1. 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,
      );