StragglerDebuggingInfo.fromJson constructor
StragglerDebuggingInfo.fromJson(
- Map json_
Implementation
StragglerDebuggingInfo.fromJson(core.Map json_)
: this(
hotKey: json_.containsKey('hotKey')
? HotKeyDebuggingInfo.fromJson(
json_['hotKey'] as core.Map<core.String, core.dynamic>)
: null,
);