StragglerDebuggingInfo.fromJson constructor

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